package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiParam; import java.io.Serializable; import java.util.Date; /** * TacPblmRectParam * * @author lhc * @date 2019-12-21 */ public class TacPblmRectParam extends PageParam implements Serializable { // 主键ID @ApiParam(name = "主键ID") @ApiModelProperty(value = "主键ID", name = "id") private String id; // 年度 @ApiParam(name = "年度") @ApiModelProperty(value = "年度", name = "year") private Long year; // 批次 @ApiParam(name = "批次") @ApiModelProperty(value = "批次", name = "batch") private Long batch; // 通知名称 @ApiParam(name = "通知名称") @ApiModelProperty(value = "通知名称", name = "title") private String title; // 通知文号 @ApiParam(name = "通知文号") @ApiModelProperty(value = "通知文号", name = "nub") private String nub; // 整改说明 @ApiParam(name = "整改说明") @ApiModelProperty(value = "整改说明", name = "explain") private String explain; // 通知印发时间 @ApiParam(name = "通知印发时间") @ApiModelProperty(value = "通知印发时间", name = "printTm") private Date printTm; // 整改截止期限 @ApiParam(name = "整改截止期限") @ApiModelProperty(value = "整改截止期限", name = "closeTm") private Date closeTm; // 发送单位总数 @ApiParam(name = "发送单位总数") @ApiModelProperty(value = "发送单位总数", name = "sndOrgSize") private Long sndOrgSize; // 工程总数 @ApiParam(name = "工程总数") @ApiModelProperty(value = "工程总数", name = "prjctSize") private Long prjctSize; // 问题总数 @ApiParam(name = "问题总数") @ApiModelProperty(value = "问题总数", name = "pblmSize") private Long pblmSize; // 创建人员id @ApiParam(name = "创建人员id") @ApiModelProperty(value = "创建人员id", name = "persId") private String persId; // 创建人员姓名 @ApiParam(name = "创建人员姓名") @ApiModelProperty(value = "创建人员姓名", name = "persName") private String persName; // 创建时间 @ApiParam(name = "创建时间") @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 最后修改时间 @ApiParam(name = "最后修改时间") @ApiModelProperty(value = "最后修改时间", name = "uptm") private Date uptm; // 数据状态(0:正常;9:删除) @ApiParam(name = "数据状态(0:正常;9:删除)") @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat") private String dataStat; // 工作底稿类型 @ApiModelProperty(value = "工作底稿类型", name = "listType") private String listType; public TacPblmRectParam() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public Long getYear() { return year; } public void setYear(Long year) { this.year = year; } public Long getBatch() { return batch; } public void setBatch(Long batch) { this.batch = batch; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getNub() { return nub; } public void setNub(String nub) { this.nub = nub; } public String getExplain() { return explain; } public void setExplain(String explain) { this.explain = explain; } public Date getPrintTm() { return printTm; } public void setPrintTm(Date printTm) { this.printTm = printTm; } public Date getCloseTm() { return closeTm; } public void setCloseTm(Date closeTm) { this.closeTm = closeTm; } public Long getSndOrgSize() { return sndOrgSize; } public void setSndOrgSize(Long sndOrgSize) { this.sndOrgSize = sndOrgSize; } public Long getPrjctSize() { return prjctSize; } public void setPrjctSize(Long prjctSize) { this.prjctSize = prjctSize; } public Long getPblmSize() { return pblmSize; } public void setPblmSize(Long pblmSize) { this.pblmSize = pblmSize; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public String getPersName() { return persName; } public void setPersName(String persName) { this.persName = persName; } 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; } public String getListType() { return listType; } public void setListType(String listType) { this.listType = listType; } }