| | |
| | | /**
|
| | | * 主键
|
| | | */
|
| | | public static final String id = "id";
|
| | | public static final String dictId = "dictId";
|
| | | /**
|
| | | * 编码
|
| | | */
|
| | |
| | | * 备注
|
| | | */
|
| | | public static final String remark = "remark";
|
| | | /**
|
| | | * 公司主键
|
| | | */
|
| | | public static final String compnayId = "compnayId";
|
| | | }
|
| | |
|
| | | // 主键
|
| | | private Integer id;
|
| | | private String dictId;
|
| | | // 编码
|
| | | private String sn;
|
| | | // 名称
|
| | |
| | | // 类型
|
| | | private String type;
|
| | | // 排序
|
| | | private Integer orderBy;
|
| | | private String orderBy;
|
| | | // 父级id
|
| | | private Integer pid;
|
| | | private String pid;
|
| | | // 备注
|
| | | private String remark;
|
| | | // 公司主键
|
| | | private String compnayId;
|
| | |
|
| | | /**
|
| | | * Get 主键
|
| | | */
|
| | | public Integer getId() {
|
| | | return id;
|
| | | public String getDictId() {
|
| | | return dictId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 主键
|
| | | */
|
| | | public void setId(Integer id) {
|
| | | this.id = id;
|
| | | public void setDictId(String dictId) {
|
| | | this.dictId = dictId;
|
| | | }
|
| | |
|
| | | /**
|
| | |
| | | /**
|
| | | * Get 排序
|
| | | */
|
| | | public Integer getOrderBy() {
|
| | | public String getOrderBy() {
|
| | | return orderBy;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 排序
|
| | | */
|
| | | public void setOrderBy(Integer orderBy) {
|
| | | public void setOrderBy(String orderBy) {
|
| | | this.orderBy = orderBy;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 父级id
|
| | | */
|
| | | public Integer getPid() {
|
| | | public String getPid() {
|
| | | return pid;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 父级id
|
| | | */
|
| | | public void setPid(Integer pid) {
|
| | | public void setPid(String pid) {
|
| | | this.pid = pid;
|
| | | }
|
| | |
|
| | |
| | | this.remark = remark;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 公司主键
|
| | | */
|
| | | public String getCompnayId() {
|
| | | return compnayId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 公司主键
|
| | | */
|
| | | public void setCompnayId(String compnayId) {
|
| | | this.compnayId = compnayId;
|
| | | }
|
| | |
|
| | | public String toString() {
|
| | | return
|
| | | ",主键 =" + id + ",编码 =" + sn + ",名称 =" + name + |
| | | ",主键 =" + dictId + ",编码 =" + sn + ",名称 =" + name + |
| | | ",类型 =" + type + ",排序 =" + orderBy + ",父级id =" + pid +
|
| | | ",备注 =" + remark ;
|
| | | ",备注 =" + remark + ",公司主键 =" + compnayId ;
|
| | | }
|
| | | }
|