1970ee6ca96eeef20cb0a5eb33c2febbddda84bf.svn-base 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * AttJspwiu2024BaseParam
  9. *
  10. * @author lhc
  11. * @date 2024-3-4
  12. */
  13. public class AttJspwiu2024BaseParam extends PageParam implements Serializable {
  14. // ID
  15. @ApiParam(name = "ID")
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 单位名称
  19. @ApiParam(name = "单位名称")
  20. @ApiModelProperty(value = "单位名称", name = "name")
  21. private String name;
  22. // 法人
  23. @ApiParam(name = "法人")
  24. @ApiModelProperty(value = "法人", name = "leglPers")
  25. private String leglPers;
  26. // 行政区划编码
  27. @ApiParam(name = "行政区划编码")
  28. @ApiModelProperty(value = "行政区划编码", name = "adCode")
  29. private String adCode;
  30. // 行政区划
  31. @ApiParam(name = "行政区划")
  32. @ApiModelProperty(value = "行政区划", name = "adName")
  33. private String adName;
  34. // 统一社会信用代码
  35. @ApiParam(name = "统一社会信用代码")
  36. @ApiModelProperty(value = "统一社会信用代码", name = "idnt")
  37. private String idnt;
  38. // 单位地址
  39. @ApiParam(name = "单位地址")
  40. @ApiModelProperty(value = "单位地址", name = "busAddr")
  41. private String busAddr;
  42. // 所属行业
  43. @ApiParam(name = "所属行业")
  44. @ApiModelProperty(value = "所属行业", name = "industry")
  45. private String industry;
  46. // 行业代码
  47. @ApiParam(name = "行业代码")
  48. @ApiModelProperty(value = "行业代码", name = "industryCode")
  49. private String industryCode;
  50. // 主要产品
  51. @ApiParam(name = "主要产品")
  52. @ApiModelProperty(value = "主要产品", name = "majorProduct")
  53. private String majorProduct;
  54. // 取水用途
  55. @ApiParam(name = "取水用途")
  56. @ApiModelProperty(value = "取水用途", name = "waterIntake")
  57. private String waterIntake;
  58. // 联系人
  59. @ApiParam(name = "联系人")
  60. @ApiModelProperty(value = "联系人", name = "conPers")
  61. private String conPers;
  62. // 联系人电话
  63. @ApiParam(name = "联系人电话")
  64. @ApiModelProperty(value = "联系人电话", name = "conPersTel")
  65. private String conPersTel;
  66. // 经度
  67. @ApiParam(name = "经度")
  68. @ApiModelProperty(value = "经度", name = "centerX")
  69. private Double centerX;
  70. // 纬度
  71. @ApiParam(name = "纬度")
  72. @ApiModelProperty(value = "纬度", name = "centerY")
  73. private Double centerY;
  74. // 高德经度
  75. @ApiParam(name = "高德经度")
  76. @ApiModelProperty(value = "高德经度", name = "gdX")
  77. private Double gdX;
  78. // 高德纬度
  79. @ApiParam(name = "高德纬度")
  80. @ApiModelProperty(value = "高德纬度", name = "gdY")
  81. private Double gdY;
  82. // 记录人员ID
  83. @ApiParam(name = "记录人员ID")
  84. @ApiModelProperty(value = "记录人员ID", name = "persId")
  85. private String persId;
  86. // 创建时间
  87. @ApiParam(name = "创建时间")
  88. @ApiModelProperty(value = "创建时间", name = "intm")
  89. private Date intm;
  90. // 最后修改时间
  91. @ApiParam(name = "最后修改时间")
  92. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  93. private Date uptm;
  94. // 备注
  95. @ApiParam(name = "备注")
  96. @ApiModelProperty(value = "备注", name = "note")
  97. private String note;
  98. // 数据状态
  99. @ApiParam(name = "数据状态")
  100. @ApiModelProperty(value = "数据状态", name = "dataStat")
  101. private String dataStat;
  102. public AttJspwiu2024BaseParam() {
  103. }
  104. public String getId() {
  105. return id;
  106. }
  107. public void setId(String id) {
  108. this.id = id;
  109. }
  110. public String getName() {
  111. return name;
  112. }
  113. public void setName(String name) {
  114. this.name = name;
  115. }
  116. public String getLeglPers() {
  117. return leglPers;
  118. }
  119. public void setLeglPers(String leglPers) {
  120. this.leglPers = leglPers;
  121. }
  122. public String getAdCode() {
  123. return adCode;
  124. }
  125. public void setAdCode(String adCode) {
  126. this.adCode = adCode;
  127. }
  128. public String getAdName() {
  129. return adName;
  130. }
  131. public void setAdName(String adName) {
  132. this.adName = adName;
  133. }
  134. public String getIdnt() {
  135. return idnt;
  136. }
  137. public void setIdnt(String idnt) {
  138. this.idnt = idnt;
  139. }
  140. public String getBusAddr() {
  141. return busAddr;
  142. }
  143. public void setBusAddr(String busAddr) {
  144. this.busAddr = busAddr;
  145. }
  146. public String getIndustry() {
  147. return industry;
  148. }
  149. public void setIndustry(String industry) {
  150. this.industry = industry;
  151. }
  152. public String getIndustryCode() {
  153. return industryCode;
  154. }
  155. public void setIndustryCode(String industryCode) {
  156. this.industryCode = industryCode;
  157. }
  158. public String getMajorProduct() {
  159. return majorProduct;
  160. }
  161. public void setMajorProduct(String majorProduct) {
  162. this.majorProduct = majorProduct;
  163. }
  164. public String getWaterIntake() {
  165. return waterIntake;
  166. }
  167. public void setWaterIntake(String waterIntake) {
  168. this.waterIntake = waterIntake;
  169. }
  170. public String getConPers() {
  171. return conPers;
  172. }
  173. public void setConPers(String conPers) {
  174. this.conPers = conPers;
  175. }
  176. public String getConPersTel() {
  177. return conPersTel;
  178. }
  179. public void setConPersTel(String conPersTel) {
  180. this.conPersTel = conPersTel;
  181. }
  182. public Double getCenterX() {
  183. return centerX;
  184. }
  185. public void setCenterX(Double centerX) {
  186. this.centerX = centerX;
  187. }
  188. public Double getCenterY() {
  189. return centerY;
  190. }
  191. public void setCenterY(Double centerY) {
  192. this.centerY = centerY;
  193. }
  194. public Double getGdX() {
  195. return gdX;
  196. }
  197. public void setGdX(Double gdX) {
  198. this.gdX = gdX;
  199. }
  200. public Double getGdY() {
  201. return gdY;
  202. }
  203. public void setGdY(Double gdY) {
  204. this.gdY = gdY;
  205. }
  206. public String getPersId() {
  207. return persId;
  208. }
  209. public void setPersId(String persId) {
  210. this.persId = persId;
  211. }
  212. public Date getIntm() {
  213. return intm;
  214. }
  215. public void setIntm(Date intm) {
  216. this.intm = intm;
  217. }
  218. public Date getUptm() {
  219. return uptm;
  220. }
  221. public void setUptm(Date uptm) {
  222. this.uptm = uptm;
  223. }
  224. public String getNote() {
  225. return note;
  226. }
  227. public void setNote(String note) {
  228. this.note = note;
  229. }
  230. public String getDataStat() {
  231. return dataStat;
  232. }
  233. public void setDataStat(String dataStat) {
  234. this.dataStat = dataStat;
  235. }
  236. }