f5bdde222c41d7a7a37b1ecbcfb083ba36cb581d.svn-base 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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. * TacAttPawpBaseParam
  8. *
  9. * @author lune
  10. * @date 2019-6-19
  11. */
  12. public class TacAttPawpBaseParam extends PageParam implements Serializable {
  13. @ApiModelProperty("主键id")
  14. private String id;
  15. @ApiModelProperty("项目名称")
  16. private String name;
  17. @ApiModelProperty("项目类型")
  18. private String type;
  19. @ApiModelProperty("所属流域机构")
  20. private String admOrg;
  21. @ApiModelProperty("行政区编码")
  22. private String adCode;
  23. @ApiModelProperty("工程详细位置")
  24. private String location;
  25. @ApiModelProperty("经度")
  26. private Double centerX;
  27. @ApiModelProperty("纬度")
  28. private Double centerY;
  29. @ApiModelProperty("高德经度")
  30. private Double gdX;
  31. @ApiModelProperty("高德纬度")
  32. private Double gdY;
  33. @ApiModelProperty("创建人")
  34. private String persId;
  35. @ApiModelProperty("创建时间")
  36. private Date intm;
  37. @ApiModelProperty("修改时间")
  38. private Date uptm;
  39. @ApiModelProperty("是否贫困县")
  40. private String isPoverty;
  41. @ApiModelProperty("行政区名称")
  42. private String adName;
  43. @ApiModelProperty("工程项目年度")
  44. private Long year;
  45. @ApiModelProperty("开工日期")
  46. private Date commencementDate;
  47. @ApiModelProperty("投资总额(万元)")
  48. private Double totalInvestment;
  49. @ApiModelProperty( "编辑对象调整原因")
  50. private String changeReson;
  51. public TacAttPawpBaseParam() {
  52. }
  53. public String getChangeReson() {
  54. return changeReson;
  55. }
  56. public void setChangeReson(String changeReson) {
  57. this.changeReson = changeReson;
  58. }
  59. public Long getYear() {
  60. return year;
  61. }
  62. public void setYear(Long year) {
  63. this.year = year;
  64. }
  65. public Date getCommencementDate() {
  66. return commencementDate;
  67. }
  68. public void setCommencementDate(Date commencementDate) {
  69. this.commencementDate = commencementDate;
  70. }
  71. public Double getTotalInvestment() {
  72. return totalInvestment;
  73. }
  74. public void setTotalInvestment(Double totalInvestment) {
  75. this.totalInvestment = totalInvestment;
  76. }
  77. public String getIsPoverty() {
  78. return isPoverty;
  79. }
  80. public void setIsPoverty(String isPoverty) {
  81. this.isPoverty = isPoverty;
  82. }
  83. public String getAdName() {
  84. return adName;
  85. }
  86. public void setAdName(String adName) {
  87. this.adName = adName;
  88. }
  89. public String getId() {
  90. return id;
  91. }
  92. public void setId(String id) {
  93. this.id = id;
  94. }
  95. public String getName() {
  96. return name;
  97. }
  98. public void setName(String name) {
  99. this.name = name;
  100. }
  101. public String getType() {
  102. return type;
  103. }
  104. public void setType(String type) {
  105. this.type = type;
  106. }
  107. public String getAdmOrg() {
  108. return admOrg;
  109. }
  110. public void setAdmOrg(String admOrg) {
  111. this.admOrg = admOrg;
  112. }
  113. public String getAdCode() {
  114. return adCode;
  115. }
  116. public void setAdCode(String adCode) {
  117. this.adCode = adCode;
  118. }
  119. public String getLocation() {
  120. return location;
  121. }
  122. public void setLocation(String location) {
  123. this.location = location;
  124. }
  125. public Double getCenterX() {
  126. return centerX;
  127. }
  128. public void setCenterX(Double centerX) {
  129. this.centerX = centerX;
  130. }
  131. public Double getCenterY() {
  132. return centerY;
  133. }
  134. public void setCenterY(Double centerY) {
  135. this.centerY = centerY;
  136. }
  137. public Double getGdX() {
  138. return gdX;
  139. }
  140. public void setGdX(Double gdX) {
  141. this.gdX = gdX;
  142. }
  143. public Double getGdY() {
  144. return gdY;
  145. }
  146. public void setGdY(Double gdY) {
  147. this.gdY = gdY;
  148. }
  149. public String getPersId() {
  150. return persId;
  151. }
  152. public void setPersId(String persId) {
  153. this.persId = persId;
  154. }
  155. public Date getIntm() {
  156. return intm;
  157. }
  158. public void setIntm(Date intm) {
  159. this.intm = intm;
  160. }
  161. public Date getUptm() {
  162. return uptm;
  163. }
  164. public void setUptm(Date uptm) {
  165. this.uptm = uptm;
  166. }
  167. }