package com.landtool.lanbase.modules.res.entity;
|
|
public class Res_OneMap_Catalog {
|
private Integer catlogid;
|
|
private Integer parentid;
|
|
private String title;
|
|
private String icon;
|
|
private Integer themeid;
|
|
private String catlogtype;
|
|
private Integer orderid;
|
|
public Integer getCatlogid() {
|
return catlogid;
|
}
|
|
public void setCatlogid(Integer catlogid) {
|
this.catlogid = catlogid;
|
}
|
|
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 == null ? null : title.trim();
|
}
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon == null ? null : icon.trim();
|
}
|
|
public Integer getThemeid() {
|
return themeid;
|
}
|
|
public void setThemeid(Integer themeid) {
|
this.themeid = themeid;
|
}
|
|
public String getCatlogtype() {
|
return catlogtype;
|
}
|
|
public void setCatlogtype(String catlogtype) {
|
this.catlogtype = catlogtype == null ? null : catlogtype.trim();
|
}
|
|
public Integer getOrderid() {
|
return orderid;
|
}
|
|
public void setOrderid(Integer orderid) {
|
this.orderid = orderid;
|
}
|
}
|