032dc4b7d213770aaed08ce07030698f570e83d4.svn-base 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import org.springframework.format.annotation.DateTimeFormat;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. /**
  10. * entity:TacAttPawpBase
  11. *
  12. * @author lune
  13. * @date 2019-6-19
  14. */
  15. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  16. public class TacAttPawpBase extends BaseBean implements Serializable {
  17. @ApiModelProperty("主键id")
  18. private String id;
  19. @ApiModelProperty("项目名称")
  20. private String name;
  21. @ApiModelProperty("项目类型")
  22. private String type;
  23. @ApiModelProperty("所属流域机构")
  24. private String admOrg;
  25. @ApiModelProperty("行政区编码")
  26. private String adCode;
  27. @ApiModelProperty("工程详细位置")
  28. private String location;
  29. @ApiModelProperty("经度")
  30. private Double centerX;
  31. @ApiModelProperty("纬度")
  32. private Double centerY;
  33. @ApiModelProperty("高德经度")
  34. private Double gdX;
  35. @ApiModelProperty("高德纬度")
  36. private Double gdY;
  37. @ApiModelProperty("创建人")
  38. private String persId;
  39. @ApiModelProperty("创建时间")
  40. private Date intm;
  41. /*
  42. @ApiModelProperty("修改时间")
  43. */
  44. //修改时间
  45. private Date uptm;
  46. @ApiModelProperty("对象id")
  47. private String objId;
  48. @ApiModelProperty("是否贫困县")
  49. private String isPoverty;
  50. @ApiModelProperty("行政区名称")
  51. private String adName;
  52. @ApiModelProperty("年度")
  53. private Long year;
  54. @DateTimeFormat(pattern = "yyyy-MM-dd")
  55. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  56. @ApiModelProperty("开工日期")
  57. private Date commencementDate;
  58. @ApiModelProperty("投资总额(万元)")
  59. private Double totalInvestment;
  60. /*
  61. @ApiModelProperty( "编辑对象调整原因")
  62. */
  63. //修改时间
  64. @ApiModelProperty("工程规模(大型、中型、小型)-湖北")
  65. private String scale;
  66. @ApiModelProperty("工程类型(水利工程通用、水库大坝工程、水电站工程、泵站工程、水闸工程、堤防工程、引调水及灌区工程、其他水利工程)-湖北")
  67. private String ptype;
  68. @ApiModelProperty("工程类别(新建、扩建、改建、加固、修复)-湖北")
  69. private String cate;
  70. @ApiModelProperty("工程阶段(刚开工、未达施工高峰、施工高峰、接近完工、已完工)-湖北")
  71. private String stage;
  72. private String changeReson;
  73. public TacAttPawpBase() {
  74. }
  75. public String getChangeReson() {
  76. return changeReson;
  77. }
  78. public void setChangeReson(String changeReson) {
  79. this.changeReson = changeReson;
  80. }
  81. public Long getYear() {
  82. return year;
  83. }
  84. public void setYear(Long year) {
  85. this.year = year;
  86. }
  87. public Date getCommencementDate() {
  88. return commencementDate;
  89. }
  90. public void setCommencementDate(Date commencementDate) {
  91. this.commencementDate = commencementDate;
  92. }
  93. public Double getTotalInvestment() {
  94. return totalInvestment;
  95. }
  96. public void setTotalInvestment(Double totalInvestment) {
  97. this.totalInvestment = totalInvestment;
  98. }
  99. public String getIsPoverty() {
  100. return isPoverty;
  101. }
  102. public void setIsPoverty(String isPoverty) {
  103. this.isPoverty = isPoverty;
  104. }
  105. public String getAdName() {
  106. return adName;
  107. }
  108. public void setAdName(String adName) {
  109. this.adName = adName;
  110. }
  111. @Override
  112. public String getObjId() {
  113. return objId;
  114. }
  115. @Override
  116. public void setObjId(String objId) {
  117. this.objId = objId;
  118. }
  119. public String getId() {
  120. return id;
  121. }
  122. public void setId(String id) {
  123. this.id = id;
  124. }
  125. public String getName() {
  126. return name;
  127. }
  128. public void setName(String name) {
  129. this.name = name;
  130. }
  131. public String getType() {
  132. return type;
  133. }
  134. public void setType(String type) {
  135. this.type = type;
  136. }
  137. public String getAdmOrg() {
  138. return admOrg;
  139. }
  140. public void setAdmOrg(String admOrg) {
  141. this.admOrg = admOrg;
  142. }
  143. public String getAdCode() {
  144. return adCode;
  145. }
  146. public void setAdCode(String adCode) {
  147. this.adCode = adCode;
  148. }
  149. public String getLocation() {
  150. return location;
  151. }
  152. public void setLocation(String location) {
  153. this.location = location;
  154. }
  155. public Double getCenterX() {
  156. return centerX;
  157. }
  158. public void setCenterX(Double centerX) {
  159. this.centerX = centerX;
  160. }
  161. public Double getCenterY() {
  162. return centerY;
  163. }
  164. public void setCenterY(Double centerY) {
  165. this.centerY = centerY;
  166. }
  167. public Double getGdX() {
  168. return gdX;
  169. }
  170. public void setGdX(Double gdX) {
  171. this.gdX = gdX;
  172. }
  173. public Double getGdY() {
  174. return gdY;
  175. }
  176. public void setGdY(Double gdY) {
  177. this.gdY = gdY;
  178. }
  179. public String getPersId() {
  180. return persId;
  181. }
  182. public void setPersId(String persId) {
  183. this.persId = persId;
  184. }
  185. public Date getIntm() {
  186. return intm;
  187. }
  188. public void setIntm(Date intm) {
  189. this.intm = intm;
  190. }
  191. public Date getUptm() {
  192. return uptm;
  193. }
  194. public void setUptm(Date uptm) {
  195. this.uptm = uptm;
  196. }
  197. @Override
  198. public String toString() {
  199. return "TacAttPawpBase [" + "id=" + id + ", name=" + name + ", type=" + type + ", admOrg=" + admOrg + ", adCode=" + adCode + ", location=" + location + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + "]";
  200. }
  201. public String getScale() {
  202. return scale;
  203. }
  204. public void setScale(String scale) {
  205. this.scale = scale;
  206. }
  207. public String getPtype() {
  208. return ptype;
  209. }
  210. public void setPtype(String ptype) {
  211. this.ptype = ptype;
  212. }
  213. public String getCate() {
  214. return cate;
  215. }
  216. public void setCate(String cate) {
  217. this.cate = cate;
  218. }
  219. public String getStage() {
  220. return stage;
  221. }
  222. public void setStage(String stage) {
  223. this.stage = stage;
  224. }
  225. }