package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import org.apache.ibatis.type.Alias;
|
|
@TableName(schema = "db_app_sys",value = "tb_page_param_user")
|
@Alias("PageParamUser")
|
public class PageParamUser {
|
|
@TableId
|
private Integer id;
|
@TableField("key")
|
private String key;
|
private String label;
|
@TableField("lableEnUs")
|
private String lableEnUs;
|
@TableField("show")
|
private Integer show;
|
private Integer userId;
|
private Integer type;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getLabel() {
|
return label;
|
}
|
|
public void setLabel(String label) {
|
this.label = label;
|
}
|
|
public Integer getShow() {
|
return show;
|
}
|
|
public void setShow(Integer show) {
|
this.show = show;
|
}
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getLableEnUs() {
|
return lableEnUs;
|
}
|
|
public void setLableEnUs(String lableEnUs) {
|
this.lableEnUs = lableEnUs;
|
}
|
}
|