4cd3b1be178285b9fdc31c576ad14b5444b0ce3b.svn-base 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  8. public class EmpwtprjPadMapDto extends BaseBean implements Serializable {
  9. @ApiModelProperty(value = "重点水利项目问题ID", name = "id")
  10. private String id;
  11. // 项目类型
  12. @ApiModelProperty(value = "项目类型 0:重大农业节水工程 1:重大引调水工程 2:重点水源工程 3:江河湖泊治理骨干工程 4:新建大型灌区工程 5:非水利部下达投资计划 6:全部由地方投资 7:其他项目15项", name = "ptype")
  13. private String ptype;
  14. // 所在行政区代码
  15. @ApiModelProperty(value = "所在行政区代码", name = "adCode")
  16. private String adCode;
  17. // 行政区名称
  18. @ApiModelProperty(value = "行政区名称", name = "adName")
  19. private String adName;
  20. // 名称
  21. @ApiModelProperty(value = "名称", name = "nm")
  22. private String nm;
  23. // 开工年份
  24. @ApiModelProperty(value = "开工年份", name = "stwktm")
  25. private Long stwktm;
  26. // 计划工期(月)
  27. @ApiModelProperty(value = "计划工期(月)", name = "plantm")
  28. private Double plantm;
  29. // 概算批复总投资(亿元)
  30. @ApiModelProperty(value = "概算批复总投资(亿元)", name = "estapp")
  31. private Double estapp;
  32. // 高德经度
  33. @ApiModelProperty(value = "高德经度", name = "lgtd")
  34. private Double lgtd;
  35. // 高德纬度
  36. @ApiModelProperty(value = "高德纬度", name = "lttd")
  37. private Double lttd;
  38. // PC经度
  39. @ApiModelProperty(value = "PC经度", name = "lgtdPc")
  40. private Double lgtdPc;
  41. // PC纬度
  42. @ApiModelProperty(value = "PC纬度", name = "lttdPc")
  43. private Double lttdPc;
  44. // 插入时间
  45. @ApiModelProperty(value = "插入时间", name = "intm")
  46. private Date intm;
  47. // 最后更新时间
  48. @ApiModelProperty(value = "最后更新时间", name = "uptm")
  49. private Date uptm;
  50. // 备注
  51. @ApiModelProperty(value = "备注", name = "note")
  52. private String note;
  53. // 管理单位ID
  54. @ApiModelProperty(value = "管理单位ID", name = "unitId")
  55. private String unitId;
  56. // 管理单位名称
  57. @ApiModelProperty(value = "管理单位名称", name = "unitNm")
  58. private String unitNm;
  59. // 更新人ID
  60. @ApiModelProperty(value = "更新人ID", name = "persId")
  61. private String persId;//更新人ID
  62. // 建成年份
  63. @ApiModelProperty(value = "建成年份", name = "buidTimeYear")
  64. private String buidTimeYear;
  65. // 工程建设情况-1:建成;2:未建成
  66. @ApiModelProperty(value = "工程建设情况-1:建成;2:未建成", name = "engSta")
  67. private String engSta;
  68. @ApiModelProperty(value = "历史是否督查过-1:是;2:否", name = "hstInsp")
  69. private String hstInsp;
  70. @ApiModelProperty(value = "督查状态-0:未督查1督查中;2:已督查", name = "rgstrStatus")
  71. private String rgstrStatus;
  72. private String objId;
  73. private String status;
  74. public String getId() {
  75. return id;
  76. }
  77. public void setId(String id) {
  78. this.id = id;
  79. }
  80. public String getPtype() {
  81. return ptype;
  82. }
  83. public void setPtype(String ptype) {
  84. this.ptype = ptype;
  85. }
  86. public String getAdCode() {
  87. return adCode;
  88. }
  89. public void setAdCode(String adCode) {
  90. this.adCode = adCode;
  91. }
  92. public String getAdName() {
  93. return adName;
  94. }
  95. public void setAdName(String adName) {
  96. this.adName = adName;
  97. }
  98. public String getNm() {
  99. return nm;
  100. }
  101. public void setNm(String nm) {
  102. this.nm = nm;
  103. }
  104. public Long getStwktm() {
  105. return stwktm;
  106. }
  107. public void setStwktm(Long stwktm) {
  108. this.stwktm = stwktm;
  109. }
  110. public Double getPlantm() {
  111. return plantm;
  112. }
  113. public void setPlantm(Double plantm) {
  114. this.plantm = plantm;
  115. }
  116. public Double getEstapp() {
  117. return estapp;
  118. }
  119. public void setEstapp(Double estapp) {
  120. this.estapp = estapp;
  121. }
  122. public Double getLgtd() {
  123. return lgtd;
  124. }
  125. public void setLgtd(Double lgtd) {
  126. this.lgtd = lgtd;
  127. }
  128. public Double getLttd() {
  129. return lttd;
  130. }
  131. public void setLttd(Double lttd) {
  132. this.lttd = lttd;
  133. }
  134. public Double getLgtdPc() {
  135. return lgtdPc;
  136. }
  137. public void setLgtdPc(Double lgtdPc) {
  138. this.lgtdPc = lgtdPc;
  139. }
  140. public Double getLttdPc() {
  141. return lttdPc;
  142. }
  143. public void setLttdPc(Double lttdPc) {
  144. this.lttdPc = lttdPc;
  145. }
  146. public Date getIntm() {
  147. return intm;
  148. }
  149. public void setIntm(Date intm) {
  150. this.intm = intm;
  151. }
  152. public Date getUptm() {
  153. return uptm;
  154. }
  155. public void setUptm(Date uptm) {
  156. this.uptm = uptm;
  157. }
  158. public String getNote() {
  159. return note;
  160. }
  161. public void setNote(String note) {
  162. this.note = note;
  163. }
  164. public String getUnitId() {
  165. return unitId;
  166. }
  167. public void setUnitId(String unitId) {
  168. this.unitId = unitId;
  169. }
  170. public String getUnitNm() {
  171. return unitNm;
  172. }
  173. public void setUnitNm(String unitNm) {
  174. this.unitNm = unitNm;
  175. }
  176. public String getPersId() {
  177. return persId;
  178. }
  179. public void setPersId(String persId) {
  180. this.persId = persId;
  181. }
  182. public String getBuidTimeYear() {
  183. return buidTimeYear;
  184. }
  185. public void setBuidTimeYear(String buidTimeYear) {
  186. this.buidTimeYear = buidTimeYear;
  187. }
  188. public String getEngSta() {
  189. return engSta;
  190. }
  191. public void setEngSta(String engSta) {
  192. this.engSta = engSta;
  193. }
  194. public String getHstInsp() {
  195. return hstInsp;
  196. }
  197. public void setHstInsp(String hstInsp) {
  198. this.hstInsp = hstInsp;
  199. }
  200. public String getRgstrStatus() {
  201. return rgstrStatus;
  202. }
  203. public void setRgstrStatus(String rgstrStatus) {
  204. this.rgstrStatus = rgstrStatus;
  205. }
  206. @Override
  207. public String getObjId() {
  208. return objId;
  209. }
  210. @Override
  211. public void setObjId(String objId) {
  212. this.objId = objId;
  213. }
  214. public String getStatus() {
  215. return status;
  216. }
  217. public void setStatus(String status) {
  218. this.status = status;
  219. }
  220. }