ed679c41f3acdbe640ea50d81725af2b14dc887c.svn-base 7.6 KB

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