package cn.com.goldenwater.dcproj.model; import java.io.Serializable; import java.util.Date; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; /** * entity:AttOrgUwatBase * * @author lune * @date 2019-2-19 */ @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"}) public class AttOrgUwatBase extends BaseBean implements Serializable { private String guid; private String pguid; private String orgCode; private String orgName; private String orgLevel; private String orgGrad; private String orgType; private Double ordernum; private String adCode; private String status; private String modifier; private Date fromDate; private Date toDate; private String note; private String jurd; private String areaType; private String nodeCode; public AttOrgUwatBase() { } public String getGuid() { return guid; } public void setGuid(String guid) { this.guid = guid; } public String getPguid() { return pguid; } public void setPguid(String pguid) { this.pguid = pguid; } public String getOrgCode() { return orgCode; } public void setOrgCode(String orgCode) { this.orgCode = orgCode; } public String getOrgName() { return orgName; } public void setOrgName(String orgName) { this.orgName = orgName; } public String getOrgLevel() { return orgLevel; } public void setOrgLevel(String orgLevel) { this.orgLevel = orgLevel; } public String getOrgGrad() { return orgGrad; } public void setOrgGrad(String orgGrad) { this.orgGrad = orgGrad; } public String getOrgType() { return orgType; } public void setOrgType(String orgType) { this.orgType = orgType; } public Double getOrdernum() { return ordernum; } public void setOrdernum(Double ordernum) { this.ordernum = ordernum; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public String getModifier() { return modifier; } public void setModifier(String modifier) { this.modifier = modifier; } public Date getFromDate() { return fromDate; } public void setFromDate(Date fromDate) { this.fromDate = fromDate; } public Date getToDate() { return toDate; } public void setToDate(Date toDate) { this.toDate = toDate; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public String getJurd() { return jurd; } public void setJurd(String jurd) { this.jurd = jurd; } public String getAreaType() { return areaType; } public void setAreaType(String areaType) { this.areaType = areaType; } public String getNodeCode() { return nodeCode; } public void setNodeCode(String nodeCode) { this.nodeCode = nodeCode; } @Override public String toString() { return "AttOrgUwatBase [" + "guid=" + guid + ", pguid=" + pguid + ", orgCode=" + orgCode + ", orgName=" + orgName + ", orgLevel=" + orgLevel + ", orgGrad=" + orgGrad + ", orgType=" + orgType + ", ordernum=" + ordernum + ", adCode=" + adCode + ", status=" + status + ", modifier=" + modifier + ", fromDate=" + fromDate + ", toDate=" + toDate + ", note=" + note + ", jurd=" + jurd + ", areaType=" + areaType + ", nodeCode=" + nodeCode + "]"; } }