package cn.com.goldenwater.dcproj.dto; import cn.com.goldenwater.core.model.BaseBean; import io.swagger.annotations.ApiModelProperty; import java.util.List; public class PlanAllAddDto extends BaseBean { @ApiModelProperty("检查年度计划分解ID") private String dtlId; @ApiModelProperty("名称") private String pnm; /** * 督查类别List */ private List typeList; @ApiModelProperty("检查单位 ID") private String planDpId; @ApiModelProperty("计划检查项目数量") private Long quantity; @ApiModelProperty("开始时间") private String stTm; @ApiModelProperty("结束时间") private String enTm; @ApiModelProperty("创建人") private String persId; /** * 确定提交 true 表示确定提交 false 表示需要校验 */ private Boolean determine; private String note; public String getDtlId() { return dtlId; } public void setDtlId(String dtlId) { this.dtlId = dtlId; } public String getPnm() { return pnm; } public void setPnm(String pnm) { this.pnm = pnm; } public String getPlanDpId() { return planDpId; } public void setPlanDpId(String planDpId) { this.planDpId = planDpId; } public Long getQuantity() { return quantity; } public void setQuantity(Long quantity) { this.quantity = quantity; } public String getStTm() { return stTm; } public void setStTm(String stTm) { this.stTm = stTm; } public String getEnTm() { return enTm; } public void setEnTm(String enTm) { this.enTm = enTm; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public List getTypeList() { return typeList; } public void setTypeList(List typeList) { this.typeList = typeList; } public Boolean getDetermine() { return determine; } public void setDetermine(Boolean determine) { this.determine = determine; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } }