aed406bc691389aae9a9a05bcc99b8740fd823f4.svn-base 3.1 KB

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