b927b5cd4c108a3754b41ef757ad6c4543ba4a30.svn-base 6.4 KB

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