package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import io.swagger.annotations.ApiParam; import java.util.Date; import java.io.Serializable; import io.swagger.annotations.ApiModelProperty; /** * BisInspRsvrSdDutyParam * * @author lhc * @date 2022-3-14 */ public class BisInspRsvrSdDutyParam extends PageParam implements Serializable { // 主键ID @ApiParam(name = "主键ID") @ApiModelProperty(value = "主键ID", name = "id") private String id; // 督查登记ID @ApiParam(name = "督查登记ID") @ApiModelProperty(value = "督查登记ID", name = "rgstrId") private String rgstrId; // 是否落实行政责任人 @ApiParam(name = "是否落实行政责任人") @ApiModelProperty(value = "是否落实行政责任人", name = "isAdmnDuty") private String isAdmnDuty; // 1.行政责任人是否参加过岗位培训 @ApiParam(name = "1.行政责任人是否参加过岗位培训") @ApiModelProperty(value = "1.行政责任人是否参加过岗位培训", name = "isAdmnTrain") private String isAdmnTrain; // 2.行政责任人履责情况是否较好 @ApiParam(name = "2.行政责任人履责情况是否较好") @ApiModelProperty(value = "2.行政责任人履责情况是否较好", name = "isAdmnFunc") private String isAdmnFunc; // 是否落实技术责任人 @ApiParam(name = "是否落实技术责任人") @ApiModelProperty(value = "是否落实技术责任人", name = "isTchDuty") private String isTchDuty; // 1.技术责任人是否参加过岗位培训 @ApiParam(name = "1.技术责任人是否参加过岗位培训") @ApiModelProperty(value = "1.技术责任人是否参加过岗位培训", name = "isTchTrain") private String isTchTrain; // 2.技术责任人履责情况是否较好 @ApiParam(name = "2.技术责任人履责情况是否较好") @ApiModelProperty(value = "2.技术责任人履责情况是否较好", name = "isTchFunc") private String isTchFunc; // 是否落实巡查责任人 @ApiParam(name = "是否落实巡查责任人") @ApiModelProperty(value = "是否落实巡查责任人", name = "isChkDuty") private String isChkDuty; // 1.巡查责任人是否参加过岗位培训 @ApiParam(name = "1.巡查责任人是否参加过岗位培训") @ApiModelProperty(value = "1.巡查责任人是否参加过岗位培训", name = "isChkTrain") private String isChkTrain; // 2.巡查责任人履责情况是否较好 @ApiParam(name = "2.巡查责任人履责情况是否较好") @ApiModelProperty(value = "2.巡查责任人履责情况是否较好", name = "isChkFunc") private String isChkFunc; // 数据状态 @ApiParam(name = "数据状态") @ApiModelProperty(value = "数据状态", name = "dataStat") private String dataStat; // 记录人员ID @ApiParam(name = "记录人员ID") @ApiModelProperty(value = "记录人员ID", 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 = "note") private String note; public BisInspRsvrSdDutyParam() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getRgstrId() { return rgstrId; } public void setRgstrId(String rgstrId) { this.rgstrId = rgstrId; } public String getIsAdmnDuty() { return isAdmnDuty; } public void setIsAdmnDuty(String isAdmnDuty) { this.isAdmnDuty = isAdmnDuty; } public String getIsAdmnTrain() { return isAdmnTrain; } public void setIsAdmnTrain(String isAdmnTrain) { this.isAdmnTrain = isAdmnTrain; } public String getIsAdmnFunc() { return isAdmnFunc; } public void setIsAdmnFunc(String isAdmnFunc) { this.isAdmnFunc = isAdmnFunc; } public String getIsTchDuty() { return isTchDuty; } public void setIsTchDuty(String isTchDuty) { this.isTchDuty = isTchDuty; } public String getIsTchTrain() { return isTchTrain; } public void setIsTchTrain(String isTchTrain) { this.isTchTrain = isTchTrain; } public String getIsTchFunc() { return isTchFunc; } public void setIsTchFunc(String isTchFunc) { this.isTchFunc = isTchFunc; } public String getIsChkDuty() { return isChkDuty; } public void setIsChkDuty(String isChkDuty) { this.isChkDuty = isChkDuty; } public String getIsChkTrain() { return isChkTrain; } public void setIsChkTrain(String isChkTrain) { this.isChkTrain = isChkTrain; } public String getIsChkFunc() { return isChkFunc; } public void setIsChkFunc(String isChkFunc) { this.isChkFunc = isChkFunc; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } 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 getNote() { return note; } public void setNote(String note) { this.note = note; } }