| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 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;
- /**
- * TacProvincePlanExamineParam
- *
- * @author hx
- * @date 2021-1-28
- */
- public class TacProvincePlanExamineParam extends PageParam implements Serializable {
- // 主键ID
- @ApiParam(name = "主键ID")
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 项目名称
- @ApiParam(name = "项目名称")
- @ApiModelProperty(value = "项目名称", name = "objName")
- private String objName;
- // 工程登记表ID
- @ApiParam(name = "工程登记表ID")
- @ApiModelProperty(value = "工程登记表ID", name = "rgstrId")
- private String rgstrId;
- // 需要审定阶段ID
- @ApiParam(name = "需要审定阶段ID")
- @ApiModelProperty(value = "需要审定阶段ID", name = "planProcessId")
- private String planProcessId;
- // 阶段审定最终状态
- @ApiParam(name = "阶段审定最终状态")
- @ApiModelProperty(value = "阶段审定最终状态", name = "stageStatus")
- private String stageStatus;
- // 创建时间
- @ApiParam(name = "创建时间")
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 修改时间
- @ApiParam(name = "修改时间")
- @ApiModelProperty(value = "修改时间", name = "uptm")
- private Date uptm;
- public TacProvincePlanExamineParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getObjName() {
- return objName;
- }
- public void setObjName(String objName) {
- this.objName = objName;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getPlanProcessId() {
- return planProcessId;
- }
- public void setPlanProcessId(String planProcessId) {
- this.planProcessId = planProcessId;
- }
- public String getStageStatus() {
- return stageStatus;
- }
- public void setStageStatus(String stageStatus) {
- this.stageStatus = stageStatus;
- }
- 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;
- }
- }
|