3e3a65b90307adc16d00de23309386527eb65eec.svn-base 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * TacProvincePlanExamineParam
  9. *
  10. * @author hx
  11. * @date 2021-1-28
  12. */
  13. public class TacProvincePlanExamineParam extends PageParam implements Serializable {
  14. // 主键ID
  15. @ApiParam(name = "主键ID")
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 项目名称
  19. @ApiParam(name = "项目名称")
  20. @ApiModelProperty(value = "项目名称", name = "objName")
  21. private String objName;
  22. // 工程登记表ID
  23. @ApiParam(name = "工程登记表ID")
  24. @ApiModelProperty(value = "工程登记表ID", name = "rgstrId")
  25. private String rgstrId;
  26. // 需要审定阶段ID
  27. @ApiParam(name = "需要审定阶段ID")
  28. @ApiModelProperty(value = "需要审定阶段ID", name = "planProcessId")
  29. private String planProcessId;
  30. // 阶段审定最终状态
  31. @ApiParam(name = "阶段审定最终状态")
  32. @ApiModelProperty(value = "阶段审定最终状态", name = "stageStatus")
  33. private String stageStatus;
  34. // 创建时间
  35. @ApiParam(name = "创建时间")
  36. @ApiModelProperty(value = "创建时间", name = "intm")
  37. private Date intm;
  38. // 修改时间
  39. @ApiParam(name = "修改时间")
  40. @ApiModelProperty(value = "修改时间", name = "uptm")
  41. private Date uptm;
  42. public TacProvincePlanExamineParam() {
  43. }
  44. public String getId() {
  45. return id;
  46. }
  47. public void setId(String id) {
  48. this.id = id;
  49. }
  50. public String getObjName() {
  51. return objName;
  52. }
  53. public void setObjName(String objName) {
  54. this.objName = objName;
  55. }
  56. public String getRgstrId() {
  57. return rgstrId;
  58. }
  59. public void setRgstrId(String rgstrId) {
  60. this.rgstrId = rgstrId;
  61. }
  62. public String getPlanProcessId() {
  63. return planProcessId;
  64. }
  65. public void setPlanProcessId(String planProcessId) {
  66. this.planProcessId = planProcessId;
  67. }
  68. public String getStageStatus() {
  69. return stageStatus;
  70. }
  71. public void setStageStatus(String stageStatus) {
  72. this.stageStatus = stageStatus;
  73. }
  74. public Date getIntm() {
  75. return intm;
  76. }
  77. public void setIntm(Date intm) {
  78. this.intm = intm;
  79. }
  80. public Date getUptm() {
  81. return uptm;
  82. }
  83. public void setUptm(Date uptm) {
  84. this.uptm = uptm;
  85. }
  86. }