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; /** * BisInspPlandpRlParam * * @author hjp * @date 2022-8-9 */ public class BisInspPlandpRlParam extends PageParam implements Serializable { // ID @ApiParam(name = "ID") @ApiModelProperty(value = "ID", name = "id") private String id; //年度计划ID @ApiModelProperty(value = "年度计划ID", name = "planId") private String planId; //参建单位ID @ApiModelProperty(value = "参建单位ID", name = "planDpId") private String planDpId; // 阶段 @ApiModelProperty(value = "阶段 0 年度检查计划 1 年度计划分解 2 详细分组安排", name = "stage") private String stage; // 创建人 @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; public BisInspPlandpRlParam() { } public BisInspPlandpRlParam(String planId, String stage) { this.planId = planId; this.stage = stage; } public BisInspPlandpRlParam(String planId, String planDpId, String stage) { this.planId = planId; this.planDpId = planDpId; this.stage = stage; } 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 String getPlanDpId() { return planDpId; } public void setPlanDpId(String planDpId) { this.planDpId = planDpId; } public String getStage() { return stage; } public void setStage(String stage) { this.stage = stage; } 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; } }