989e3a2c793f2721bbffeacf71fe4e3d44274ada.svn-base 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. import java.util.List;
  7. /**
  8. * AttCwsBaseParam
  9. *
  10. * @author zhengdafei
  11. * @date 2019-3-14
  12. */
  13. public class AttCwsBaseParam extends PageParam implements Serializable {
  14. // 修改人ID
  15. @ApiParam(name = "修改人ID")
  16. private String edtrPesr;
  17. // 最后修改时间
  18. @ApiParam(name = "最后修改时间")
  19. private String uptm;
  20. private String engType;
  21. private String wasuType;
  22. private String wasuRang;
  23. private Double desWasuScal;
  24. private Double desWasuPop;
  25. private String engStat;
  26. private String startDate;
  27. private String compDate;
  28. private String note;
  29. private String effDate;
  30. private String exprDate;
  31. private String addvcd;
  32. // 高德经度
  33. @ApiParam(name = "高德经度")
  34. private Double centerXGd;
  35. // 高德纬度
  36. @ApiParam(name = "高德纬度")
  37. private Double centerYGd;
  38. private String guid;
  39. private String cwsCode;
  40. private String cwsName;
  41. private Double cwsLong;
  42. private Double cwsLat;
  43. private String cwsLoc;
  44. @ApiModelProperty(value = "建成年份YYYY,农饮新需求添加,前端可传此参数")
  45. private String compYear;
  46. /**
  47. * 是否省属 1是 2否
  48. */
  49. @ApiParam(
  50. name = "provincial",
  51. value = "是否省属:1是2否"
  52. )
  53. private String provincial;
  54. @ApiParam(
  55. name = "cwsCodes",
  56. value = "人饮编码:多个以英文半角逗号隔开"
  57. )
  58. private List<String> cwsCodes;
  59. public String getCompYear() {
  60. return compYear;
  61. }
  62. public void setCompYear(String compYear) {
  63. this.compYear = compYear;
  64. }
  65. public AttCwsBaseParam() {
  66. }
  67. public String getEdtrPesr() {
  68. return edtrPesr;
  69. }
  70. public void setEdtrPesr(String edtrPesr) {
  71. this.edtrPesr = edtrPesr;
  72. }
  73. public String getUptm() {
  74. return uptm;
  75. }
  76. public void setUptm(String uptm) {
  77. this.uptm = uptm;
  78. }
  79. public String getEngType() {
  80. return engType;
  81. }
  82. public void setEngType(String engType) {
  83. this.engType = engType;
  84. }
  85. public String getWasuType() {
  86. return wasuType;
  87. }
  88. public void setWasuType(String wasuType) {
  89. this.wasuType = wasuType;
  90. }
  91. public String getWasuRang() {
  92. return wasuRang;
  93. }
  94. public void setWasuRang(String wasuRang) {
  95. this.wasuRang = wasuRang;
  96. }
  97. public Double getDesWasuScal() {
  98. return desWasuScal;
  99. }
  100. public void setDesWasuScal(Double desWasuScal) {
  101. this.desWasuScal = desWasuScal;
  102. }
  103. public Double getDesWasuPop() {
  104. return desWasuPop;
  105. }
  106. public void setDesWasuPop(Double desWasuPop) {
  107. this.desWasuPop = desWasuPop;
  108. }
  109. public String getEngStat() {
  110. return engStat;
  111. }
  112. public void setEngStat(String engStat) {
  113. this.engStat = engStat;
  114. }
  115. public String getStartDate() {
  116. return startDate;
  117. }
  118. public void setStartDate(String startDate) {
  119. this.startDate = startDate;
  120. }
  121. public String getCompDate() {
  122. return compDate;
  123. }
  124. public void setCompDate(String compDate) {
  125. this.compDate = compDate;
  126. }
  127. public String getNote() {
  128. return note;
  129. }
  130. public void setNote(String note) {
  131. this.note = note;
  132. }
  133. public String getEffDate() {
  134. return effDate;
  135. }
  136. public void setEffDate(String effDate) {
  137. this.effDate = effDate;
  138. }
  139. public String getExprDate() {
  140. return exprDate;
  141. }
  142. public void setExprDate(String exprDate) {
  143. this.exprDate = exprDate;
  144. }
  145. public String getAddvcd() {
  146. return addvcd;
  147. }
  148. public void setAddvcd(String addvcd) {
  149. this.addvcd = addvcd;
  150. }
  151. public Double getCenterXGd() {
  152. return centerXGd;
  153. }
  154. public void setCenterXGd(Double centerXGd) {
  155. this.centerXGd = centerXGd;
  156. }
  157. public Double getCenterYGd() {
  158. return centerYGd;
  159. }
  160. public void setCenterYGd(Double centerYGd) {
  161. this.centerYGd = centerYGd;
  162. }
  163. public String getGuid() {
  164. return guid;
  165. }
  166. public void setGuid(String guid) {
  167. this.guid = guid;
  168. }
  169. public String getCwsCode() {
  170. return cwsCode;
  171. }
  172. public void setCwsCode(String cwsCode) {
  173. this.cwsCode = cwsCode;
  174. }
  175. public String getCwsName() {
  176. return cwsName;
  177. }
  178. public void setCwsName(String cwsName) {
  179. this.cwsName = cwsName;
  180. }
  181. public Double getCwsLong() {
  182. return cwsLong;
  183. }
  184. public void setCwsLong(Double cwsLong) {
  185. this.cwsLong = cwsLong;
  186. }
  187. public Double getCwsLat() {
  188. return cwsLat;
  189. }
  190. public void setCwsLat(Double cwsLat) {
  191. this.cwsLat = cwsLat;
  192. }
  193. public String getCwsLoc() {
  194. return cwsLoc;
  195. }
  196. public void setCwsLoc(String cwsLoc) {
  197. this.cwsLoc = cwsLoc;
  198. }
  199. public String getProvincial() {
  200. return provincial;
  201. }
  202. public void setProvincial(String provincial) {
  203. this.provincial = provincial;
  204. }
  205. public List<String> getCwsCodes() {
  206. return cwsCodes;
  207. }
  208. public void setCwsCodes(List<String> cwsCodes) {
  209. this.cwsCodes = cwsCodes;
  210. }
  211. }