fa67073a122a68a2b40b7d1ecf53d90c78dff1ca.svn-base 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:BisInspSamrmpRgstr
  9. *
  10. * @author lune
  11. * @date 2020-9-11
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspSamrmpRgstr extends BaseBean implements Serializable {
  15. @ApiModelProperty(value="主键ID", position = 1)
  16. private String id;
  17. @ApiModelProperty(value="督查对象ID", position = 2)
  18. private String objId;
  19. @ApiModelProperty(value="工程项目ID", position = 3)
  20. private String prjId;
  21. @ApiModelProperty(value="工程项目名称", position = 4)
  22. private String prjName;
  23. @ApiModelProperty(value="所在河流", position = 5)
  24. private String rvName;
  25. @ApiModelProperty(value="规划河长(km)", position = 4)
  26. private String rvLong;
  27. @ApiModelProperty(value="规划总投资(万元)", position = 5)
  28. private String pgi;
  29. @ApiModelProperty(value="行政区编码", position = 6)
  30. private String adCode;
  31. @ApiModelProperty(value="行政区域描述", position = 7)
  32. private String adName;
  33. @ApiModelProperty(value="所在位置详细描述信息", position = 8)
  34. private String addr;
  35. @ApiModelProperty(value="PC经度", position = 9)
  36. private Double centerX;
  37. @ApiModelProperty(value="PC纬度", position = 10)
  38. private Double centerY;
  39. @ApiModelProperty(value="高德经度", position = 11)
  40. private Double gdX;
  41. @ApiModelProperty(value="高德纬度", position = 12)
  42. private Double gdY;
  43. @ApiModelProperty(value="中小河流治理项目抽查情况填报状态(0:未填报;1:填报中;2:已填报)", position = 13)
  44. private String smrmpState;
  45. @ApiModelProperty(value="督查状态(0:未督查;2:督查中;3:已督查)", position = 14)
  46. private String state;
  47. @ApiModelProperty(value="小组组长", position = 15)
  48. private String groupLeader;
  49. @ApiModelProperty(value="小组组长电话", position = 16)
  50. private String groupLeaderTel;
  51. @ApiModelProperty(value="记录人员ID", position = 17)
  52. private String recPersId;
  53. @ApiModelProperty(value="记录人员名称", position = 18)
  54. private String recPers;
  55. @ApiModelProperty(value="记录人员电话", position = 19)
  56. private String recPersTel;
  57. @ApiModelProperty(value="创建时间", position = 20)
  58. private Date intm;
  59. @ApiModelProperty(value="最后修改时间", position = 21)
  60. private Date uptm;
  61. @ApiModelProperty(value="备注", position = 22)
  62. private String note;
  63. private String groupName;
  64. public BisInspSamrmpRgstr() {
  65. }
  66. public String getGroupName() {
  67. return groupName;
  68. }
  69. public void setGroupName(String groupName) {
  70. this.groupName = groupName;
  71. }
  72. public String getRvLong() {
  73. return rvLong;
  74. }
  75. public void setRvLong(String rvLong) {
  76. this.rvLong = rvLong;
  77. }
  78. public String getPgi() {
  79. return pgi;
  80. }
  81. public void setPgi(String pgi) {
  82. this.pgi = pgi;
  83. }
  84. public String getId() {
  85. return id;
  86. }
  87. public void setId(String id) {
  88. this.id = id;
  89. }
  90. @Override
  91. public String getObjId() {
  92. return objId;
  93. }
  94. @Override
  95. public void setObjId(String objId) {
  96. this.objId = objId;
  97. }
  98. public String getPrjId() {
  99. return prjId;
  100. }
  101. public void setPrjId(String prjId) {
  102. this.prjId = prjId;
  103. }
  104. public String getPrjName() {
  105. return prjName;
  106. }
  107. public void setPrjName(String prjName) {
  108. this.prjName = prjName;
  109. }
  110. public String getRvName() {
  111. return rvName;
  112. }
  113. public void setRvName(String rvName) {
  114. this.rvName = rvName;
  115. }
  116. public String getAdCode() {
  117. return adCode;
  118. }
  119. public void setAdCode(String adCode) {
  120. this.adCode = adCode;
  121. }
  122. public String getAdName() {
  123. return adName;
  124. }
  125. public void setAdName(String adName) {
  126. this.adName = adName;
  127. }
  128. public String getAddr() {
  129. return addr;
  130. }
  131. public void setAddr(String addr) {
  132. this.addr = addr;
  133. }
  134. public Double getCenterX() {
  135. return centerX;
  136. }
  137. public void setCenterX(Double centerX) {
  138. this.centerX = centerX;
  139. }
  140. public Double getCenterY() {
  141. return centerY;
  142. }
  143. public void setCenterY(Double centerY) {
  144. this.centerY = centerY;
  145. }
  146. public Double getGdX() {
  147. return gdX;
  148. }
  149. public void setGdX(Double gdX) {
  150. this.gdX = gdX;
  151. }
  152. public Double getGdY() {
  153. return gdY;
  154. }
  155. public void setGdY(Double gdY) {
  156. this.gdY = gdY;
  157. }
  158. public String getSmrmpState() {
  159. return smrmpState;
  160. }
  161. public void setSmrmpState(String smrmpState) {
  162. this.smrmpState = smrmpState;
  163. }
  164. public String getState() {
  165. return state;
  166. }
  167. public void setState(String state) {
  168. this.state = state;
  169. }
  170. public String getGroupLeader() {
  171. return groupLeader;
  172. }
  173. public void setGroupLeader(String groupLeader) {
  174. this.groupLeader = groupLeader;
  175. }
  176. public String getGroupLeaderTel() {
  177. return groupLeaderTel;
  178. }
  179. public void setGroupLeaderTel(String groupLeaderTel) {
  180. this.groupLeaderTel = groupLeaderTel;
  181. }
  182. public String getRecPersId() {
  183. return recPersId;
  184. }
  185. public void setRecPersId(String recPersId) {
  186. this.recPersId = recPersId;
  187. }
  188. public String getRecPers() {
  189. return recPers;
  190. }
  191. public void setRecPers(String recPers) {
  192. this.recPers = recPers;
  193. }
  194. public String getRecPersTel() {
  195. return recPersTel;
  196. }
  197. public void setRecPersTel(String recPersTel) {
  198. this.recPersTel = recPersTel;
  199. }
  200. public Date getIntm() {
  201. return intm;
  202. }
  203. public void setIntm(Date intm) {
  204. this.intm = intm;
  205. }
  206. public Date getUptm() {
  207. return uptm;
  208. }
  209. public void setUptm(Date uptm) {
  210. this.uptm = uptm;
  211. }
  212. public String getNote() {
  213. return note;
  214. }
  215. public void setNote(String note) {
  216. this.note = note;
  217. }
  218. @Override
  219. public String toString() {
  220. return "BisInspSamrmpRgstr [" + "id=" + id + ", objId=" + objId + ", prjId=" + prjId + ", prjName=" + prjName + ", rvName=" + rvName + ", adCode=" + adCode + ", adName=" + adName + ", addr=" + addr + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", smrmpState=" + smrmpState + ", state=" + state + ", groupLeader=" + groupLeader + ", groupLeaderTel=" + groupLeaderTel + ", recPersId=" + recPersId + ", recPers=" + recPers + ", recPersTel=" + recPersTel + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + "]";
  221. }
  222. }