9bdce39dc7c9e05f4fee564a3c082a8e32a6c4bc.svn-base 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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:BisInspPlanDtlAddvcd
  11. *
  12. * @author hjp
  13. * @date 2022-8-9
  14. */
  15. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  16. public class BisInspPlanDtlAddvcd extends BaseBean implements Serializable {
  17. // ID
  18. @ApiModelProperty(value="ID",name="id")
  19. private String id;
  20. // 检查年度计划分解表ID
  21. @ApiModelProperty(value="检查年度计划分解表ID",name="planDtlId")
  22. private String planDtlId;
  23. // 所在行政区代码
  24. @ApiModelProperty(value="所在行政区代码",name="adCode")
  25. private String adCode;
  26. // 所在地行政区
  27. @ApiModelProperty(value="所在地行政区",name="adName")
  28. private String adName;
  29. // 行政区等级 3市 4 县
  30. @ApiModelProperty(value="行政区等级 3市 4 县",name="adGrad")
  31. private String adGrad;
  32. // 创建人
  33. @ApiModelProperty(value="创建人",name="persId")
  34. private String persId;
  35. // 创建时间
  36. @ApiModelProperty(value="创建时间",name="intm")
  37. private Date intm;
  38. // 修改时间
  39. @ApiModelProperty(value="修改时间",name="uptm")
  40. private Date uptm;
  41. // 数据状态
  42. @ApiModelProperty(value="数据状态",name="dataStat")
  43. private String dataStat;
  44. public BisInspPlanDtlAddvcd() {
  45. }
  46. public BisInspPlanDtlAddvcd(String planDtlId, String adCode, String adName, String adGrad, String persId) {
  47. this.planDtlId = planDtlId;
  48. this.adCode = adCode;
  49. this.adName = adName;
  50. this.adGrad = adGrad;
  51. this.persId = persId;
  52. this.dataStat = Constant.STRING_ZERO;
  53. this.intm = new Date();
  54. this.uptm = new Date();
  55. this.id = UuidUtil.uuid();
  56. }
  57. public String getId() {
  58. return id;
  59. }
  60. public void setId(String id) {
  61. this.id = id;
  62. }
  63. public String getPlanDtlId() {
  64. return planDtlId;
  65. }
  66. public void setPlanDtlId(String planDtlId) {
  67. this.planDtlId = planDtlId;
  68. }
  69. public String getAdCode() {
  70. return adCode;
  71. }
  72. public void setAdCode(String adCode) {
  73. this.adCode = adCode;
  74. }
  75. public String getAdName() {
  76. return adName;
  77. }
  78. public void setAdName(String adName) {
  79. this.adName = adName;
  80. }
  81. public String getAdGrad() {
  82. return adGrad;
  83. }
  84. public void setAdGrad(String adGrad) {
  85. this.adGrad = adGrad;
  86. }
  87. public String getPersId() {
  88. return persId;
  89. }
  90. public void setPersId(String persId) {
  91. this.persId = persId;
  92. }
  93. public Date getIntm() {
  94. return intm;
  95. }
  96. public void setIntm(Date intm) {
  97. this.intm = intm;
  98. }
  99. public Date getUptm() {
  100. return uptm;
  101. }
  102. public void setUptm(Date uptm) {
  103. this.uptm = uptm;
  104. }
  105. public String getDataStat() {
  106. return dataStat;
  107. }
  108. public void setDataStat(String dataStat) {
  109. this.dataStat = dataStat;
  110. }
  111. @Override
  112. public String toString() {
  113. return "BisInspPlanDtlAddvcd [" + "id=" + id + ", planDtlId=" + planDtlId + ", adCode=" + adCode + ", adName=" + adName + ", adGrad=" + adGrad + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  114. }
  115. }