3bf91dcbd4e6f0e0ec6c5e7d11bfb778e602d1b8.svn-base 5.9 KB

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