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:News * * @author lhc * @date 2020-10-21 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class News 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 = "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; // 创建人员id @ApiModelProperty(value = "创建人员id", name = "persId") private String persId; // 创建人员id @ApiModelProperty(value = "创建人员名称", name = "persNm") private String persNm; // 创建人员id @ApiModelProperty(value = "序号", name = "ordr") private String ordr; // 创建人员id @ApiModelProperty(value = "发布单位", name = "pubDep") private String pubDep; // 创建人员id @ApiModelProperty(value = "所属系统", name = "app") private String app; public String getApp() { return app; } public void setApp(String app) { this.app = app; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public String getPersNm() { return persNm; } public void setPersNm(String persNm) { this.persNm = persNm; } public String getOrdr() { return ordr; } public void setOrdr(String ordr) { this.ordr = ordr; } public String getPubDep() { return pubDep; } public void setPubDep(String pubDep) { this.pubDep = pubDep; } public News() { } 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 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 "News{" + "id='" + id + '\'' + ", orgId='" + orgId + '\'' + ", adCode='" + adCode + '\'' + ", adName='" + adName + '\'' + ", adFullName='" + adFullName + '\'' + ", adGrad='" + adGrad + '\'' + ", title='" + title + '\'' + ", des='" + des + '\'' + ", clcUrl='" + clcUrl + '\'' + ", intm=" + intm + ", uptm=" + uptm + ", dataStat='" + dataStat + '\'' + ", persId='" + persId + '\'' + ", persNm='" + persNm + '\'' + ", ordr='" + ordr + '\'' + ", pubDep='" + pubDep + '\'' + ", app='" + app + '\'' + '}'; } }