package cn.com.goldenwater.dcproj.model; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; /** * entity:Subject * * @author lhc * @date 2020-10-21 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class Subject extends BaseBean implements Serializable { // 主键ID @ApiModelProperty(value = "主键ID", name = "id") private String id; // 机构ID @ApiModelProperty(value = "机构ID", name = "orgId") private String orgId; // 行政区编码 @ApiModelProperty(value = "行政区编码", name = "adCode") private String adCode; // 行政区划名称 @ApiModelProperty(value = "行政区划名称", name = "adName") private String adName; // 行政区划全称 @ApiModelProperty(value = "行政区划全称", name = "adFullName") private String adFullName; // 行政区级别 3 市 4 县 @ApiModelProperty(value = "行政区级别 3 市 4 县", name = "adGrad") private String adGrad; // 标题 @ApiModelProperty(value = "标题", name = "title") private String title; // 说明 @ApiModelProperty(value = "说明", name = "des") private String des; // 图片地址 @ApiModelProperty(value = "图片地址", name = "picUrl") private String picUrl; // 是否展示 @ApiModelProperty(value = "是否展示", name = "isShw") private String isShw; // 展示顺序 @ApiModelProperty(value = "展示顺序", name = "shwOrd") private Long shwOrd; // 展示顺序 @ApiModelProperty(value = "展示顺序", name = "clcUrl") private String clcUrl; // 创建时间 @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 修改时间 @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; // 数据状态(0:正常;9:删除) @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat") private String dataStat; public Subject() { } public String getId() { return id; } public void setId(String id) { this.id = id; } @Override public String getOrgId() { return orgId; } @Override public void setOrgId(String orgId) { this.orgId = orgId; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public String getAdName() { return adName; } public void setAdName(String adName) { this.adName = adName; } public String getAdFullName() { return adFullName; } public void setAdFullName(String adFullName) { this.adFullName = adFullName; } public String getAdGrad() { return adGrad; } public void setAdGrad(String adGrad) { this.adGrad = adGrad; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDes() { return des; } public void setDes(String des) { this.des = des; } public String getPicUrl() { return picUrl; } public void setPicUrl(String picUrl) { this.picUrl = picUrl; } public String getIsShw() { return isShw; } public void setIsShw(String isShw) { this.isShw = isShw; } public Long getShwOrd() { return shwOrd; } public void setShwOrd(Long shwOrd) { this.shwOrd = shwOrd; } public String getClcUrl() { return clcUrl; } public void setClcUrl(String clcUrl) { this.clcUrl = clcUrl; } public Date getIntm() { return intm; } public void setIntm(Date intm) { this.intm = intm; } public Date getUptm() { return uptm; } public void setUptm(Date uptm) { this.uptm = uptm; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } @Override public String toString() { return "Subject [" + "id=" + id + ", orgId=" + orgId + ", adCode=" + adCode + ", adName=" + adName + ", adFullName=" + adFullName + ", adGrad=" + adGrad + ", title=" + title + ", des=" + des + ", picUrl=" + picUrl + ", isShw=" + isShw + ", shwOrd=" + shwOrd + ", clcUrl=" + clcUrl + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]"; } }