3afb9d73b2636d0b7bec2a679cf8d724415051cb.svn-base 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * BisInspPlandpRlParam
  9. *
  10. * @author hjp
  11. * @date 2022-8-9
  12. */
  13. public class BisInspPlandpRlParam extends PageParam implements Serializable {
  14. // ID
  15. @ApiParam(name = "ID")
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. //年度计划ID
  19. @ApiModelProperty(value = "年度计划ID", name = "planId")
  20. private String planId;
  21. //参建单位ID
  22. @ApiModelProperty(value = "参建单位ID", name = "planDpId")
  23. private String planDpId;
  24. // 阶段
  25. @ApiModelProperty(value = "阶段 0 年度检查计划 1 年度计划分解 2 详细分组安排", name = "stage")
  26. private String stage;
  27. // 创建人
  28. @ApiParam(name = "创建人")
  29. @ApiModelProperty(value = "创建人", name = "persId")
  30. private String persId;
  31. // 创建时间
  32. @ApiParam(name = "创建时间")
  33. @ApiModelProperty(value = "创建时间", name = "intm")
  34. private Date intm;
  35. // 修改时间
  36. @ApiParam(name = "修改时间")
  37. @ApiModelProperty(value = "修改时间", name = "uptm")
  38. private Date uptm;
  39. // 数据状态
  40. @ApiParam(name = "数据状态")
  41. @ApiModelProperty(value = "数据状态", name = "dataStat")
  42. private String dataStat;
  43. public BisInspPlandpRlParam() {
  44. }
  45. public BisInspPlandpRlParam(String planId, String stage) {
  46. this.planId = planId;
  47. this.stage = stage;
  48. }
  49. public BisInspPlandpRlParam(String planId, String planDpId, String stage) {
  50. this.planId = planId;
  51. this.planDpId = planDpId;
  52. this.stage = stage;
  53. }
  54. public String getId() {
  55. return id;
  56. }
  57. public void setId(String id) {
  58. this.id = id;
  59. }
  60. public String getPlanId() {
  61. return planId;
  62. }
  63. public void setPlanId(String planId) {
  64. this.planId = planId;
  65. }
  66. public String getPlanDpId() {
  67. return planDpId;
  68. }
  69. public void setPlanDpId(String planDpId) {
  70. this.planDpId = planDpId;
  71. }
  72. public String getStage() {
  73. return stage;
  74. }
  75. public void setStage(String stage) {
  76. this.stage = stage;
  77. }
  78. public String getPersId() {
  79. return persId;
  80. }
  81. public void setPersId(String persId) {
  82. this.persId = persId;
  83. }
  84. public Date getIntm() {
  85. return intm;
  86. }
  87. public void setIntm(Date intm) {
  88. this.intm = intm;
  89. }
  90. public Date getUptm() {
  91. return uptm;
  92. }
  93. public void setUptm(Date uptm) {
  94. this.uptm = uptm;
  95. }
  96. public String getDataStat() {
  97. return dataStat;
  98. }
  99. public void setDataStat(String dataStat) {
  100. this.dataStat = dataStat;
  101. }
  102. }