c1f6c573c5978d5c1323cfe6297ba46c26937c35.svn-base 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import java.util.List;
  5. import com.fasterxml.jackson.annotation.JsonFormat;
  6. import io.swagger.annotations.ApiModelProperty;
  7. import cn.com.goldenwater.core.model.BaseBean;
  8. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  9. import org.springframework.format.annotation.DateTimeFormat;
  10. /**
  11. * entity:BisInspHystRgstr
  12. *
  13. * @author lune
  14. * @date 2021-3-2
  15. */
  16. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  17. public class BisInspHystRgstr extends BaseBean implements Serializable {
  18. @ApiModelProperty(value="主键ID", position = 1)
  19. private String id;
  20. @ApiModelProperty(value="督查对象ID", position = 2)
  21. private String objId;
  22. @ApiModelProperty(value="行政区编码/对象编码", position = 3)
  23. private String adCode;
  24. @ApiModelProperty(value="行政区名称/对象名称", position = 4)
  25. private String adName;
  26. @ApiModelProperty(value="行政区划全称", position = 5)
  27. private String adFullName;
  28. @ApiModelProperty(value="是否属于长江经济带(1:是;2:否;)", position = 6)
  29. private String isBeYreb;
  30. @ApiModelProperty(value="水电站基础信息填报状态(0:未填报;1:填报中;2:已填报)", position = 7)
  31. private String baseState;
  32. @ApiModelProperty(value="小水电清理整改填报状态(0:未填报;1:填报中;2:已填报)", position = 8)
  33. private String rectState;
  34. @ApiModelProperty(value="长江经济带退出类小水电清理整改情况填报状态(0:未填报;1:填报中;2:已填报)", position = 9)
  35. private String oocState;
  36. @ApiModelProperty(value="小水电安全管理情况填报状态(0:未填报;1:填报中;2:已填报)", position = 10)
  37. private String sfmngState;
  38. @ApiModelProperty(value="县级组织、管理情况表填报状态(0:未填报;1:填报中;2:已填报)", position = 11)
  39. private String coMngState;
  40. @ApiModelProperty(value="督查状态", position = 12)
  41. private String state;
  42. @ApiModelProperty(value="记录人员ID", position = 13)
  43. private String persId;
  44. @ApiModelProperty(value="备注", position = 14)
  45. private String note;
  46. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  47. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  48. @ApiModelProperty(value="创建时间", position = 15)
  49. private Date intm;
  50. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  51. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  52. @ApiModelProperty(value="最后修改时间", position = 16)
  53. private Date uptm;
  54. @ApiModelProperty(value="小水电列表", position = 17)
  55. private List<BisInspHystInfo> htstList;
  56. public BisInspHystRgstr() {
  57. }
  58. public String getId() {
  59. return id;
  60. }
  61. public void setId(String id) {
  62. this.id = id;
  63. }
  64. public String getObjId() {
  65. return objId;
  66. }
  67. public void setObjId(String objId) {
  68. this.objId = objId;
  69. }
  70. public String getAdCode() {
  71. return adCode;
  72. }
  73. public void setAdCode(String adCode) {
  74. this.adCode = adCode;
  75. }
  76. public String getAdName() {
  77. return adName;
  78. }
  79. public void setAdName(String adName) {
  80. this.adName = adName;
  81. }
  82. public String getAdFullName() {
  83. return adFullName;
  84. }
  85. public void setAdFullName(String adFullName) {
  86. this.adFullName = adFullName;
  87. }
  88. public String getIsBeYreb() {
  89. return isBeYreb;
  90. }
  91. public void setIsBeYreb(String isBeYreb) {
  92. this.isBeYreb = isBeYreb;
  93. }
  94. public String getBaseState() {
  95. return baseState;
  96. }
  97. public void setBaseState(String baseState) {
  98. this.baseState = baseState;
  99. }
  100. public String getRectState() {
  101. return rectState;
  102. }
  103. public void setRectState(String rectState) {
  104. this.rectState = rectState;
  105. }
  106. public String getOocState() {
  107. return oocState;
  108. }
  109. public void setOocState(String oocState) {
  110. this.oocState = oocState;
  111. }
  112. public String getSfmngState() {
  113. return sfmngState;
  114. }
  115. public void setSfmngState(String sfmngState) {
  116. this.sfmngState = sfmngState;
  117. }
  118. public String getCoMngState() {
  119. return coMngState;
  120. }
  121. public void setCoMngState(String coMngState) {
  122. this.coMngState = coMngState;
  123. }
  124. public String getState() {
  125. return state;
  126. }
  127. public void setState(String state) {
  128. this.state = state;
  129. }
  130. public String getPersId() {
  131. return persId;
  132. }
  133. public void setPersId(String persId) {
  134. this.persId = persId;
  135. }
  136. public String getNote() {
  137. return note;
  138. }
  139. public void setNote(String note) {
  140. this.note = note;
  141. }
  142. public Date getIntm() {
  143. return intm;
  144. }
  145. public void setIntm(Date intm) {
  146. this.intm = intm;
  147. }
  148. public Date getUptm() {
  149. return uptm;
  150. }
  151. public void setUptm(Date uptm) {
  152. this.uptm = uptm;
  153. }
  154. public List<BisInspHystInfo> getHtstList() {
  155. return htstList;
  156. }
  157. public void setHtstList(List<BisInspHystInfo> htstList) {
  158. this.htstList = htstList;
  159. }
  160. @Override
  161. public String toString() {
  162. return "BisInspHystRgstr [" + "id=" + id + ", objId=" + objId + ", adCode=" + adCode + ", adName=" + adName + ", adFullName=" + adFullName + ", isBeYreb=" + isBeYreb + ", baseState=" + baseState + ", rectState=" + rectState + ", oocState=" + oocState + ", sfmngState=" + sfmngState + ", coMngState=" + coMngState + ", state=" + state + ", persId=" + persId + ", note=" + note + ", intm=" + intm + ", uptm=" + uptm + "]";
  163. }
  164. }