package com.landtool.lanbase.modules.res.entity;
|
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
|
|
public class Res_Catalog {
|
|
@JSONField(name = "id")
|
private Integer catlogid;
|
private String catlogcode;
|
private Integer parentid;
|
private String title;
|
private String pingyinfiirst;
|
private String description;
|
private String imgurl;
|
private Integer orderid;
|
private String createuser;
|
private java.sql.Timestamp createdate;
|
private String remark;
|
private String icon;
|
private String resourceClass;
|
@JSONField(name = "isParent")
|
private Boolean isParent;
|
private String iconOpen;
|
private String iconClose;
|
public Integer getCatlogid() {
|
return catlogid;
|
}
|
private Integer pid;
|
private String name;
|
public void setCatlogid(Integer catlogid) {
|
this.catlogid = catlogid;
|
}
|
|
|
public String getCatlogcode() {
|
return catlogcode;
|
}
|
|
public void setCatlogcode(String catlogcode) {
|
this.catlogcode = catlogcode;
|
}
|
|
|
public Integer getParentid() {
|
return parentid;
|
}
|
|
public void setParentid(Integer parentid) {
|
this.parentid = parentid;
|
}
|
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
|
public String getPingyinfiirst() {
|
return pingyinfiirst;
|
}
|
|
public void setPingyinfiirst(String pingyinfiirst) {
|
this.pingyinfiirst = pingyinfiirst;
|
}
|
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
|
public String getImgurl() {
|
return imgurl;
|
}
|
|
public void setImgurl(String imgurl) {
|
this.imgurl = imgurl;
|
}
|
|
|
public Integer getOrderid() {
|
return orderid;
|
}
|
|
public void setOrderid(Integer orderid) {
|
this.orderid = orderid;
|
}
|
|
|
public String getCreateuser() {
|
return createuser;
|
}
|
|
public void setCreateuser(String createuser) {
|
this.createuser = createuser;
|
}
|
|
|
public java.sql.Timestamp getCreatedate() {
|
return createdate;
|
}
|
|
public void setCreatedate(java.sql.Timestamp createdate) {
|
this.createdate = createdate;
|
}
|
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
public String getResourceClass() {
|
return resourceClass;
|
}
|
|
public void setResourceClass(String resourceClass) {
|
this.resourceClass = resourceClass;
|
}
|
|
@JSONField(name = "isParent")
|
public Boolean isParent() {
|
return isParent;
|
}
|
|
public void setParent(Boolean parent) {
|
isParent = parent;
|
}
|
|
public String getIconOpen() {
|
return iconOpen;
|
}
|
|
public void setIconOpen(String iconOpen) {
|
this.iconOpen = iconOpen;
|
}
|
|
public String getIconClose() {
|
return iconClose;
|
}
|
|
public void setIconClose(String iconClose) {
|
this.iconClose = iconClose;
|
}
|
|
public Integer getPid() {
|
return pid;
|
}
|
|
public void setPid(Integer pid) {
|
this.pid = pid;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
@Override
|
public String toString() {
|
return "Res_Catalog{" +
|
"catlogid=" + catlogid +
|
", catlogcode='" + catlogcode + '\'' +
|
", parentid=" + parentid +
|
", title='" + title + '\'' +
|
", pingyinfiirst='" + pingyinfiirst + '\'' +
|
", description='" + description + '\'' +
|
", imgurl='" + imgurl + '\'' +
|
", orderid=" + orderid +
|
", createuser='" + createuser + '\'' +
|
", createdate=" + createdate +
|
", remark='" + remark + '\'' +
|
", icon='" + icon + '\'' +
|
", resourceClass='" + resourceClass + '\'' +
|
", isParent=" + isParent +
|
", iconOpen='" + iconOpen + '\'' +
|
", iconClose='" + iconClose + '\'' +
|
", pid=" + pid +
|
", name='" + name + '\'' +
|
'}';
|
}
|
}
|