27d33466f0068fd726e5ddcd9f2aa61dca830b89.svn-base 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. public class BisInspKeyRegisterDto implements Serializable {
  6. // 172工程登记记录ID
  7. @ApiModelProperty(value = "172工程登记记录ID", name = "id")
  8. private String id;
  9. // 督查对象ID
  10. @ApiModelProperty(value = "督查对象ID", name = "objId")
  11. private String objId;
  12. // 项目类型
  13. @ApiModelProperty(value = "督查对象类型", name = "ptype")
  14. private String ptype;
  15. // 0:重大农业节水工程 1:重大引调水工程 2:重点水源工程 3:江河湖泊治理骨干工程 4:新建大型灌区工程 5:非水利部下达投资计划 6:全部由地方投资 7:其他项目15项
  16. // 项目类型
  17. @ApiModelProperty(value = "0:重大农业节水工程 1:重大引调水工程 2:重点水源工程 3:江河湖泊治理骨干工程 4:新建大型灌区工程 5:非水利部下达投资计划 6:全部由地方投资 7:其他项目15项", name = "etype")
  18. private String etype;
  19. //节点ID
  20. @ApiModelProperty(value = "节点ID", name = "nodeId")
  21. private String nodeId;
  22. // 名称
  23. @ApiModelProperty(value = "名称", name = "nm")
  24. private String nm;
  25. // 开工年份
  26. @ApiModelProperty(value = "开工年份", name = "stwktm")
  27. private String stwktm;
  28. // 计划工期(月)
  29. @ApiModelProperty(value = "计划工期(月)", name = "plantm")
  30. private Double plantm;
  31. // 概算批复总投资(亿元)
  32. @ApiModelProperty(value = "概算批复总投资(亿元)", name = "estapp")
  33. private Double estapp;
  34. // 高德经度
  35. @ApiModelProperty(value = "高德经度", name = "lgtd")
  36. private Double lgtd;
  37. // 高德纬度
  38. @ApiModelProperty(value = "高德纬度", name = "lttd")
  39. private Double lttd;
  40. // PC经度
  41. @ApiModelProperty(value = "PC经度", name = "lgtdPc")
  42. private Double lgtdPc;
  43. // PC纬度
  44. @ApiModelProperty(value = "PC纬度", name = "lttdPc")
  45. private Double lttdPc;
  46. // 督查状态
  47. @ApiModelProperty(value = "督查状态", name = "state")
  48. private String state;
  49. // 建成年份
  50. @ApiModelProperty(value = "建成年份", name = "buidTimeYear")
  51. private String buidTimeYear;
  52. // 工程建设情况-1:建成;2:未建成
  53. @ApiModelProperty(value = "工程建设情况-1:建成;2:未建成", name = "engSta")
  54. private String engSta;
  55. @ApiModelProperty(value = "对象代码", name = "code")
  56. private String code;
  57. // 督查状态
  58. @ApiModelProperty(value = "督查状态 0 未督查,1 督查中 2 已督查", name = "wtdstState")
  59. private String wtdstState;
  60. @ApiModelProperty(value = "一级管理单位名称", name = "oneUnitName")
  61. private String oneUnitName;
  62. @ApiModelProperty(value = "一级管理单位id", name = "oneUnitName")
  63. private String oneUnitId;
  64. @ApiModelProperty("工程概况(福建增加)")
  65. private String engProfil;
  66. @ApiModelProperty("建设进展概况(福建增加)")
  67. private String engBuild;
  68. public BisInspKeyRegisterDto() {
  69. }
  70. public String getEngProfil() {
  71. return engProfil;
  72. }
  73. public void setEngProfil(String engProfil) {
  74. this.engProfil = engProfil;
  75. }
  76. public String getEngBuild() {
  77. return engBuild;
  78. }
  79. public void setEngBuild(String engBuild) {
  80. this.engBuild = engBuild;
  81. }
  82. public String getId() {
  83. return id;
  84. }
  85. public void setId(String id) {
  86. this.id = id;
  87. }
  88. public String getObjId() {
  89. return objId;
  90. }
  91. public void setObjId(String objId) {
  92. this.objId = objId;
  93. }
  94. public String getPtype() {
  95. return ptype;
  96. }
  97. public void setPtype(String ptype) {
  98. this.ptype = ptype;
  99. }
  100. public String getNm() {
  101. return nm;
  102. }
  103. public void setNm(String nm) {
  104. this.nm = nm;
  105. }
  106. public String getStwktm() {
  107. return stwktm;
  108. }
  109. public void setStwktm(String stwktm) {
  110. this.stwktm = stwktm;
  111. }
  112. public Double getPlantm() {
  113. return plantm;
  114. }
  115. public void setPlantm(Double plantm) {
  116. this.plantm = plantm;
  117. }
  118. public Double getEstapp() {
  119. return estapp;
  120. }
  121. public void setEstapp(Double estapp) {
  122. this.estapp = estapp;
  123. }
  124. public Double getLgtd() {
  125. return lgtd;
  126. }
  127. public void setLgtd(Double lgtd) {
  128. this.lgtd = lgtd;
  129. }
  130. public Double getLttd() {
  131. return lttd;
  132. }
  133. public void setLttd(Double lttd) {
  134. this.lttd = lttd;
  135. }
  136. public Double getLgtdPc() {
  137. return lgtdPc;
  138. }
  139. public void setLgtdPc(Double lgtdPc) {
  140. this.lgtdPc = lgtdPc;
  141. }
  142. public Double getLttdPc() {
  143. return lttdPc;
  144. }
  145. public void setLttdPc(Double lttdPc) {
  146. this.lttdPc = lttdPc;
  147. }
  148. public String getState() {
  149. return state;
  150. }
  151. public void setState(String state) {
  152. this.state = state;
  153. }
  154. public String getNodeId() {
  155. return nodeId;
  156. }
  157. public void setNodeId(String nodeId) {
  158. this.nodeId = nodeId;
  159. }
  160. public String getBuidTimeYear() {
  161. return buidTimeYear;
  162. }
  163. public void setBuidTimeYear(String buidTimeYear) {
  164. this.buidTimeYear = buidTimeYear;
  165. }
  166. public String getEngSta() {
  167. return engSta;
  168. }
  169. public void setEngSta(String engSta) {
  170. this.engSta = engSta;
  171. }
  172. public String getEtype() {
  173. return etype;
  174. }
  175. public void setEtype(String etype) {
  176. this.etype = etype;
  177. }
  178. public String getCode() {
  179. return code;
  180. }
  181. public void setCode(String code) {
  182. this.code = code;
  183. }
  184. public String getWtdstState() {
  185. return wtdstState;
  186. }
  187. public void setWtdstState(String wtdstState) {
  188. this.wtdstState = wtdstState;
  189. }
  190. public String getOneUnitName() {
  191. return oneUnitName;
  192. }
  193. public void setOneUnitName(String oneUnitName) {
  194. this.oneUnitName = oneUnitName;
  195. }
  196. public String getOneUnitId() {
  197. return oneUnitId;
  198. }
  199. public void setOneUnitId(String oneUnitId) {
  200. this.oneUnitId = oneUnitId;
  201. }
  202. }