37003490cfc74feabfe17758dd92aa4455502b2d.svn-base 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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. * AttJspwiuBaseParam
  9. *
  10. * @author lhc
  11. * @date 2023年3月20日
  12. */
  13. public class AttJspwiuBaseParam 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 = "adCode")
  25. private String adCode;
  26. // 行政区划
  27. @ApiParam(name = "行政区划")
  28. @ApiModelProperty(value = "行政区划", name = "adName")
  29. private String adName;
  30. // 统一社会信用代码
  31. @ApiParam(name = "统一社会信用代码")
  32. @ApiModelProperty(value = "统一社会信用代码", name = "sctcd")
  33. private String sctcd;
  34. // 单位类型 1企业 2机关 3学校 4医院 5宾馆 6高校 7其他
  35. @ApiParam(name = "单位类型 1企业 2机关 3学校 4医院 5宾馆 6高校 7其他")
  36. @ApiModelProperty(value = "单位类型 1企业 2机关 3学校 4医院 5宾馆 6高校 7其他", name = "depType")
  37. private String depType;
  38. // 行业类型 1节水型 2非节水型
  39. @ApiParam(name = "行业类型 1节水型 2非节水型")
  40. @ApiModelProperty(value = "行业类型 1节水型 2非节水型", name = "tmpType")
  41. private String tmpType;
  42. // 注册地址
  43. @ApiParam(name = "注册地址")
  44. @ApiModelProperty(value = "注册地址", name = "regAddr")
  45. private String regAddr;
  46. // 经营地址
  47. @ApiParam(name = "经营地址")
  48. @ApiModelProperty(value = "经营地址", name = "busAddr")
  49. private String busAddr;
  50. // 联系人
  51. @ApiParam(name = "联系人")
  52. @ApiModelProperty(value = "联系人", name = "conPers")
  53. private String conPers;
  54. // 联系人电话
  55. @ApiParam(name = "联系人电话")
  56. @ApiModelProperty(value = "联系人电话", name = "conPersTel")
  57. private String conPersTel;
  58. // 负责人
  59. @ApiParam(name = "负责人")
  60. @ApiModelProperty(value = "负责人", name = "keyPers")
  61. private String keyPers;
  62. // 经度
  63. @ApiParam(name = "经度")
  64. @ApiModelProperty(value = "经度", name = "centerX")
  65. private Double centerX;
  66. // 纬度
  67. @ApiParam(name = "纬度")
  68. @ApiModelProperty(value = "纬度", name = "centerY")
  69. private Double centerY;
  70. // 高德经度
  71. @ApiParam(name = "高德经度")
  72. @ApiModelProperty(value = "高德经度", name = "gdX")
  73. private Double gdX;
  74. // 高德纬度
  75. @ApiParam(name = "高德纬度")
  76. @ApiModelProperty(value = "高德纬度", name = "gdY")
  77. private Double gdY;
  78. // 记录人员ID
  79. @ApiParam(name = "记录人员ID")
  80. @ApiModelProperty(value = "记录人员ID", name = "persId")
  81. private String persId;
  82. // 创建时间
  83. @ApiParam(name = "创建时间")
  84. @ApiModelProperty(value = "创建时间", name = "intm")
  85. private Date intm;
  86. // 最后修改时间
  87. @ApiParam(name = "最后修改时间")
  88. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  89. private Date uptm;
  90. // 备注
  91. @ApiParam(name = "备注")
  92. @ApiModelProperty(value = "备注", name = "note")
  93. private String note;
  94. // 数据状态
  95. @ApiParam(name = "数据状态")
  96. @ApiModelProperty(value = "数据状态", name = "dataStat")
  97. private String dataStat;
  98. public AttJspwiuBaseParam() {
  99. }
  100. public String getId() {
  101. return id;
  102. }
  103. public void setId(String id) {
  104. this.id = id;
  105. }
  106. public String getName() {
  107. return name;
  108. }
  109. public void setName(String name) {
  110. this.name = name;
  111. }
  112. public String getAdCode() {
  113. return adCode;
  114. }
  115. public void setAdCode(String adCode) {
  116. this.adCode = adCode;
  117. }
  118. public String getAdName() {
  119. return adName;
  120. }
  121. public void setAdName(String adName) {
  122. this.adName = adName;
  123. }
  124. public String getSctcd() {
  125. return sctcd;
  126. }
  127. public void setSctcd(String sctcd) {
  128. this.sctcd = sctcd;
  129. }
  130. public String getDepType() {
  131. return depType;
  132. }
  133. public void setDepType(String depType) {
  134. this.depType = depType;
  135. }
  136. public String getTmpType() {
  137. return tmpType;
  138. }
  139. public void setTmpType(String tmpType) {
  140. this.tmpType = tmpType;
  141. }
  142. public String getRegAddr() {
  143. return regAddr;
  144. }
  145. public void setRegAddr(String regAddr) {
  146. this.regAddr = regAddr;
  147. }
  148. public String getBusAddr() {
  149. return busAddr;
  150. }
  151. public void setBusAddr(String busAddr) {
  152. this.busAddr = busAddr;
  153. }
  154. public String getConPers() {
  155. return conPers;
  156. }
  157. public void setConPers(String conPers) {
  158. this.conPers = conPers;
  159. }
  160. public String getConPersTel() {
  161. return conPersTel;
  162. }
  163. public void setConPersTel(String conPersTel) {
  164. this.conPersTel = conPersTel;
  165. }
  166. public String getKeyPers() {
  167. return keyPers;
  168. }
  169. public void setKeyPers(String keyPers) {
  170. this.keyPers = keyPers;
  171. }
  172. public Double getCenterX() {
  173. return centerX;
  174. }
  175. public void setCenterX(Double centerX) {
  176. this.centerX = centerX;
  177. }
  178. public Double getCenterY() {
  179. return centerY;
  180. }
  181. public void setCenterY(Double centerY) {
  182. this.centerY = centerY;
  183. }
  184. public Double getGdX() {
  185. return gdX;
  186. }
  187. public void setGdX(Double gdX) {
  188. this.gdX = gdX;
  189. }
  190. public Double getGdY() {
  191. return gdY;
  192. }
  193. public void setGdY(Double gdY) {
  194. this.gdY = gdY;
  195. }
  196. public String getPersId() {
  197. return persId;
  198. }
  199. public void setPersId(String persId) {
  200. this.persId = persId;
  201. }
  202. public Date getIntm() {
  203. return intm;
  204. }
  205. public void setIntm(Date intm) {
  206. this.intm = intm;
  207. }
  208. public Date getUptm() {
  209. return uptm;
  210. }
  211. public void setUptm(Date uptm) {
  212. this.uptm = uptm;
  213. }
  214. public String getNote() {
  215. return note;
  216. }
  217. public void setNote(String note) {
  218. this.note = note;
  219. }
  220. public String getDataStat() {
  221. return dataStat;
  222. }
  223. public void setDataStat(String dataStat) {
  224. this.dataStat = dataStat;
  225. }
  226. }