| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- 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:BisInspPlanChk
- *
- * @author lhc
- * @date 2021-4-1
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspPlanChk extends BaseBean implements Serializable {
- // ID
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 年度
- @ApiModelProperty(value = "行政区划编码", name = "adCode")
- private String adCode;
- // 年度
- @ApiModelProperty(value = "年度", name = "chkYear")
- private Long chkYear;
- // 检查项目
- @ApiModelProperty(value = "检查项目", name = "chkItem")
- private String chkItem;
- // 监管事项
- @ApiModelProperty(value = "监管事项", name = "chkMatter")
- private String chkMatter;
- // 批次
- @ApiModelProperty(value = "批次", name = "chkBatch")
- private String chkBatch;
- // 计划时间
- @ApiModelProperty(value = "计划时间", name = "chkTm")
- private String chkTm;
- // 检查地区(市/州)
- @ApiModelProperty(value = "检查地区(市/州)", name = "chkCity")
- private String chkCity;
- // 检查县
- @ApiModelProperty(value = "检查县", name = "chkCounty")
- private String chkCounty;
- // 主要检查内容
- @ApiModelProperty(value = "主要检查内容", name = "chkContent")
- private String chkContent;
- // 支撑单位
- @ApiModelProperty(value = "支撑单位", name = "chkDep")
- private String chkDep;
- // 开展方式
- @ApiModelProperty(value = "开展方式", name = "chkType")
- private String chkType;
- // 创建人
- @ApiModelProperty(value = "创建人", name = "persId")
- private String persId;
- // 创建时间
- @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 String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public Long getChkYear() {
- return chkYear;
- }
- public void setChkYear(Long chkYear) {
- this.chkYear = chkYear;
- }
- public String getChkItem() {
- return chkItem;
- }
- public void setChkItem(String chkItem) {
- this.chkItem = chkItem;
- }
- public String getChkMatter() {
- return chkMatter;
- }
- public void setChkMatter(String chkMatter) {
- this.chkMatter = chkMatter;
- }
- public String getChkBatch() {
- return chkBatch;
- }
- public void setChkBatch(String chkBatch) {
- this.chkBatch = chkBatch;
- }
- public String getChkTm() {
- return chkTm;
- }
- public void setChkTm(String chkTm) {
- this.chkTm = chkTm;
- }
- public String getChkCity() {
- return chkCity;
- }
- public void setChkCity(String chkCity) {
- this.chkCity = chkCity;
- }
- public String getChkCounty() {
- return chkCounty;
- }
- public void setChkCounty(String chkCounty) {
- this.chkCounty = chkCounty;
- }
- public String getChkContent() {
- return chkContent;
- }
- public void setChkContent(String chkContent) {
- this.chkContent = chkContent;
- }
- public String getChkDep() {
- return chkDep;
- }
- public void setChkDep(String chkDep) {
- this.chkDep = chkDep;
- }
- public String getChkType() {
- return chkType;
- }
- public void setChkType(String chkType) {
- this.chkType = chkType;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- 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 "BisInspPlanChk [" + "id=" + id + ", chkYear=" + chkYear + ", chkItem=" + chkItem + ", chkMatter=" + chkMatter + ", chkBatch=" + chkBatch + ", chkTm=" + chkTm + ", chkCity=" + chkCity + ", chkCounty=" + chkCounty + ", chkContent=" + chkContent + ", chkDep=" + chkDep + ", chkType=" + chkType + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
- }
- }
|