8e89a1ee14194a3e774c623a90f52dd280ba8b67.svn-base 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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. * AttEmpwtprjTrackParam
  9. *
  10. * @author lhc
  11. * @date 2019-4-20
  12. */
  13. public class AttEmpwtprjTrackParam 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 = "项目类型", 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 Long 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. // 管理单位ID
  59. @ApiParam(name = "管理单位ID")
  60. @ApiModelProperty(value = "管理单位ID", name = "unitId")
  61. private String unitId;
  62. // 管理单位名称
  63. @ApiParam(name = "管理单位名称")
  64. @ApiModelProperty(value = "管理单位名称", name = "unitNm")
  65. private String unitNm;
  66. // 记录人员ID
  67. @ApiParam(name = "记录人员ID")
  68. @ApiModelProperty(value = "记录人员ID", name = "persId")
  69. private String persId;
  70. // 插入时间
  71. @ApiParam(name = "插入时间")
  72. @ApiModelProperty(value = "插入时间", name = "intm")
  73. private Date intm;
  74. // 最后更新时间
  75. @ApiParam(name = "最后更新时间")
  76. @ApiModelProperty(value = "最后更新时间", name = "uptm")
  77. private Date uptm;
  78. // 备注
  79. @ApiParam(name = "备注")
  80. @ApiModelProperty(value = "备注", name = "note")
  81. private String note;
  82. @ApiModelProperty("工程概况(福建增加)")
  83. private String engProfil;
  84. @ApiModelProperty("建设进展概况(福建增加)")
  85. private String engBuild;
  86. public AttEmpwtprjTrackParam() {
  87. }
  88. public String getEngProfil() {
  89. return engProfil;
  90. }
  91. public void setEngProfil(String engProfil) {
  92. this.engProfil = engProfil;
  93. }
  94. public String getEngBuild() {
  95. return engBuild;
  96. }
  97. public void setEngBuild(String engBuild) {
  98. this.engBuild = engBuild;
  99. }
  100. public String getId() {
  101. return id;
  102. }
  103. public void setId(String id) {
  104. this.id = id;
  105. }
  106. public String getPtype() {
  107. return ptype;
  108. }
  109. public void setPtype(String ptype) {
  110. this.ptype = ptype;
  111. }
  112. public String getAdCode() {
  113. return adCode;
  114. }
  115. public void setAdCode(String adCode) {
  116. this.adCode = adCode;
  117. }
  118. public String getNm() {
  119. return nm;
  120. }
  121. public void setNm(String nm) {
  122. this.nm = nm;
  123. }
  124. public Long getStwktm() {
  125. return stwktm;
  126. }
  127. public void setStwktm(Long stwktm) {
  128. this.stwktm = stwktm;
  129. }
  130. public Double getPlantm() {
  131. return plantm;
  132. }
  133. public void setPlantm(Double plantm) {
  134. this.plantm = plantm;
  135. }
  136. public Double getEstapp() {
  137. return estapp;
  138. }
  139. public void setEstapp(Double estapp) {
  140. this.estapp = estapp;
  141. }
  142. public Double getLgtd() {
  143. return lgtd;
  144. }
  145. public void setLgtd(Double lgtd) {
  146. this.lgtd = lgtd;
  147. }
  148. public Double getLttd() {
  149. return lttd;
  150. }
  151. public void setLttd(Double lttd) {
  152. this.lttd = lttd;
  153. }
  154. public Double getLgtdPc() {
  155. return lgtdPc;
  156. }
  157. public void setLgtdPc(Double lgtdPc) {
  158. this.lgtdPc = lgtdPc;
  159. }
  160. public Double getLttdPc() {
  161. return lttdPc;
  162. }
  163. public void setLttdPc(Double lttdPc) {
  164. this.lttdPc = lttdPc;
  165. }
  166. public String getUnitId() {
  167. return unitId;
  168. }
  169. public void setUnitId(String unitId) {
  170. this.unitId = unitId;
  171. }
  172. public String getUnitNm() {
  173. return unitNm;
  174. }
  175. public void setUnitNm(String unitNm) {
  176. this.unitNm = unitNm;
  177. }
  178. public String getPersId() {
  179. return persId;
  180. }
  181. public void setPersId(String persId) {
  182. this.persId = persId;
  183. }
  184. public Date getIntm() {
  185. return intm;
  186. }
  187. public void setIntm(Date intm) {
  188. this.intm = intm;
  189. }
  190. public Date getUptm() {
  191. return uptm;
  192. }
  193. public void setUptm(Date uptm) {
  194. this.uptm = uptm;
  195. }
  196. public String getNote() {
  197. return note;
  198. }
  199. public void setNote(String note) {
  200. this.note = note;
  201. }
  202. }