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; /** * BisInspPlanDtlParam * * @author hjp * @date 2022-8-9 */ public class BisInspPlanDtlParam extends PageParam implements Serializable { // ID @ApiParam(name = "ID") @ApiModelProperty(value = "ID", name = "id") private String id; // 名称 @ApiModelProperty(value = "nm", name = "nm") private String nm; // 年度计划ID @ApiParam(name = "年度计划ID") @ApiModelProperty(value = "年度计划ID", name = "planId") private String planId; // 检查开始时间 @ApiParam(name = "检查开始时间") @ApiModelProperty(value = "检查开始时间", name = "stTm") private Date stTm; // 检查结束时间 @ApiParam(name = "检查结束时间") @ApiModelProperty(value = "检查结束时间", name = "enTm") private Date enTm; // 计划检查项目数量 @ApiParam(name = "计划检查项目数量") @ApiModelProperty(value = "计划检查项目数量", name = "chkPrjSize") private Long chkPrjSize; // 开展方式 @ApiParam(name = "开展方式") @ApiModelProperty(value = "开展方式", name = "chkType") private String chkType; // 工作形式 1线上(水利监督信息系统)2线下 @ApiParam(name = "工作形式 1线上(水利监督信息系统)2线下") @ApiModelProperty(value = "工作形式 1线上(水利监督信息系统)2线下", name = "onlineChk") private String onlineChk; private String note; // 创建人 @ApiParam(name = "创建人") @ApiModelProperty(value = "创建人", name = "persId") private String persId; // 创建时间 @ApiParam(name = "创建时间") @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 修改时间 @ApiParam(name = "修改时间") @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; // 数据状态 @ApiParam(name = "数据状态") @ApiModelProperty(value = "数据状态", name = "dataStat") private String dataStat; /** * 年度 */ private String yearStr; /** * 月份 */ private String monthStr; /** * 是否重复 0 否 1 是 空 null 所有 */ private String isItRedundant; /** * 检查单位 ID */ private String planDpId; private String ddAdCode; /** * 年度 */ private Long chkYear; /** * CHK_CONTENT * 详细计划 检查内容 */ @ApiParam(name = "检查内容") @ApiModelProperty(value = "检查内容", name = "chkContent") private String chkContent ; /** * CHK_IMPL_DEPT * 开展检查实施处室(单位),多个以英文逗号隔开 */ @ApiParam(name = "开展检查实施处室") @ApiModelProperty(value = "开展检查实施处室", name = "chkImplDept") private String chkImplDept ; @ApiParam(name = "开展检查实施处室") @ApiModelProperty(value = "牵头处室ID",name = "leadDepId") private String leadDepId; public BisInspPlanDtlParam() { } public Long getChkYear() { return chkYear; } public void setChkYear(Long chkYear) { this.chkYear = chkYear; } public String getDdAdCode() { return ddAdCode; } public void setDdAdCode(String ddAdCode) { this.ddAdCode = ddAdCode; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getPlanId() { return planId; } public void setPlanId(String planId) { this.planId = planId; } public Date getStTm() { return stTm; } public void setStTm(Date stTm) { this.stTm = stTm; } public Date getEnTm() { return enTm; } public void setEnTm(Date enTm) { this.enTm = enTm; } public Long getChkPrjSize() { return chkPrjSize; } public void setChkPrjSize(Long chkPrjSize) { this.chkPrjSize = chkPrjSize; } public String getChkType() { return chkType; } public void setChkType(String chkType) { this.chkType = chkType; } public String getOnlineChk() { return onlineChk; } public void setOnlineChk(String onlineChk) { this.onlineChk = onlineChk; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } 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; } public String getYearStr() { return yearStr; } public void setYearStr(String yearStr) { this.yearStr = yearStr; } public String getMonthStr() { return monthStr; } public void setMonthStr(String monthStr) { this.monthStr = monthStr; } public String getIsItRedundant() { return isItRedundant; } public void setIsItRedundant(String isItRedundant) { this.isItRedundant = isItRedundant; } public String getPlanDpId() { return planDpId; } public void setPlanDpId(String planDpId) { this.planDpId = planDpId; } public String getNm() { return nm; } public void setNm(String nm) { this.nm = nm; } public String getChkContent() { return chkContent; } public void setChkContent(String chkContent) { this.chkContent = chkContent; } public String getChkImplDept() { return chkImplDept; } public void setChkImplDept(String chkImplDept) { this.chkImplDept = chkImplDept; } public String getLeadDepId() { return leadDepId; } public void setLeadDepId(String leadDepId) { this.leadDepId = leadDepId; } }