b8f740f0eaf4acf1b0e0c03c16bd37b61bdaec79.svn-base 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import cn.com.goldenwater.dcproj.dto.BisInspFundRgstrDto;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import io.swagger.annotations.ApiParam;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. /**
  9. * BisInspFundRgstrParam
  10. *
  11. * @author lisen
  12. * @date 2021-6-19
  13. */
  14. public class BisInspFundRgstrParam extends PageParam implements Serializable {
  15. // 主键ID
  16. @ApiParam(name = "主键ID")
  17. @ApiModelProperty(value = "主键ID", name = "id")
  18. private String id;
  19. // 督查对象ID
  20. @ApiParam(name = "督查对象ID")
  21. @ApiModelProperty(value = "督查对象ID", name = "objId")
  22. private String objId;
  23. // 项目编码
  24. @ApiParam(name = "项目编码")
  25. @ApiModelProperty(value = "项目编码", name = "projCode")
  26. private String projCode;
  27. // 项目名称
  28. @ApiParam(name = "项目名称")
  29. @ApiModelProperty(value = "项目名称", name = "nm")
  30. private String nm;
  31. // 行政区划编码
  32. @ApiParam(name = "行政区划编码")
  33. @ApiModelProperty(value = "行政区划编码", name = "adCode")
  34. private String adCode;
  35. // 行政区划名称
  36. @ApiParam(name = "行政区划名称")
  37. @ApiModelProperty(value = "行政区划名称", name = "adName")
  38. private String adName;
  39. // 建设单位
  40. @ApiParam(name = "建设单位")
  41. @ApiModelProperty(value = "建设单位", name = "constractUnit")
  42. private String constractUnit;
  43. // 项目类型
  44. @ApiParam(name = "项目类型")
  45. @ApiModelProperty(value = "项目类型", name = "projType")
  46. private String projType;
  47. // 预算年份
  48. @ApiParam(name = "预算年份")
  49. @ApiModelProperty(value = "预算年份", name = "planYear")
  50. private String planYear;
  51. // 计划安排资金(万元)
  52. @ApiParam(name = "计划安排资金(万元)")
  53. @ApiModelProperty(value = "计划安排资金(万元)", name = "planFunds")
  54. private Double planFunds;
  55. // 备注
  56. @ApiParam(name = "备注")
  57. @ApiModelProperty(value = "备注", name = "remarks")
  58. private String remarks;
  59. // 经度
  60. @ApiParam(name = "经度")
  61. @ApiModelProperty(value = "经度", name = "centerX")
  62. private Double centerX;
  63. // 纬度
  64. @ApiParam(name = "纬度")
  65. @ApiModelProperty(value = "纬度", name = "centerY")
  66. private Double centerY;
  67. // 高德经度
  68. @ApiParam(name = "高德经度")
  69. @ApiModelProperty(value = "高德经度", name = "gdX")
  70. private Double gdX;
  71. // 高德纬度
  72. @ApiParam(name = "高德纬度")
  73. @ApiModelProperty(value = "高德纬度", name = "gdY")
  74. private Double gdY;
  75. // 督查状态
  76. @ApiParam(name = "督查状态")
  77. @ApiModelProperty(value = "督查状态", name = "state")
  78. private String state;
  79. // 创建人
  80. @ApiParam(name = "创建人")
  81. @ApiModelProperty(value = "创建人", name = "persId")
  82. private String persId;
  83. // 创建时间
  84. @ApiParam(name = "创建时间")
  85. @ApiModelProperty(value = "创建时间", name = "intm")
  86. private Date intm;
  87. // 修改时间
  88. @ApiParam(name = "修改时间")
  89. @ApiModelProperty(value = "修改时间", name = "uptm")
  90. private Date uptm;
  91. // 督查组
  92. @ApiParam(name = "督查组")
  93. @ApiModelProperty(value = "督查组", name = "groupId")
  94. private String groupId;
  95. public String getPlnaId() {
  96. return plnaId;
  97. }
  98. public void setPlnaId(String plnaId) {
  99. this.plnaId = plnaId;
  100. }
  101. // 计划id
  102. @ApiParam(name = "计划")
  103. @ApiModelProperty(value = "计划", name = "plnaId")
  104. private String plnaId;
  105. // 数据状态(0:正常;9:删除)
  106. @ApiParam(name = "数据状态(0:正常;9:删除)")
  107. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  108. private String dataStat;
  109. @ApiParam(name = "时间条件-开始时间")
  110. @ApiModelProperty(value = "时间条件-开始时间", name = "sttm")
  111. private String sttm;
  112. @ApiParam(name = "时间条件-结束时间")
  113. @ApiModelProperty(value = "时间条件-结束时间", name = "entm")
  114. private String entm;
  115. public BisInspFundRgstrParam() {
  116. }
  117. public String getId() {
  118. return id;
  119. }
  120. public void setId(String id) {
  121. this.id = id;
  122. }
  123. public String getObjId() {
  124. return objId;
  125. }
  126. public void setObjId(String objId) {
  127. this.objId = objId;
  128. }
  129. public String getProjCode() {
  130. return projCode;
  131. }
  132. public void setProjCode(String projCode) {
  133. this.projCode = projCode;
  134. }
  135. public String getNm() {
  136. return nm;
  137. }
  138. public void setNm(String projName) {
  139. this.nm = nm;
  140. }
  141. public String getAdCode() {
  142. return adCode;
  143. }
  144. public void setAdCode(String adCode) {
  145. this.adCode = adCode;
  146. }
  147. public String getAdName() {
  148. return adName;
  149. }
  150. public void setAdName(String adName) {
  151. this.adName = adName;
  152. }
  153. public String getConstractUnit() {
  154. return constractUnit;
  155. }
  156. public void setConstractUnit(String constractUnit) {
  157. this.constractUnit = constractUnit;
  158. }
  159. public String getProjType() {
  160. return projType;
  161. }
  162. public void setProjType(String projType) {
  163. this.projType = projType;
  164. }
  165. public String getPlanYear() {
  166. return planYear;
  167. }
  168. public void setPlanYear(String planYear) {
  169. this.planYear = planYear;
  170. }
  171. public Double getPlanFunds() {
  172. return planFunds;
  173. }
  174. public void setPlanFunds(Double planFunds) {
  175. this.planFunds = planFunds;
  176. }
  177. public String getRemarks() {
  178. return remarks;
  179. }
  180. public void setRemarks(String remarks) {
  181. this.remarks = remarks;
  182. }
  183. public Double getCenterX() {
  184. return centerX;
  185. }
  186. public void setCenterX(Double centerX) {
  187. this.centerX = centerX;
  188. }
  189. public Double getCenterY() {
  190. return centerY;
  191. }
  192. public void setCenterY(Double centerY) {
  193. this.centerY = centerY;
  194. }
  195. public Double getGdX() {
  196. return gdX;
  197. }
  198. public void setGdX(Double gdX) {
  199. this.gdX = gdX;
  200. }
  201. public Double getGdY() {
  202. return gdY;
  203. }
  204. public void setGdY(Double gdY) {
  205. this.gdY = gdY;
  206. }
  207. public String getState() {
  208. return state;
  209. }
  210. public void setState(String state) {
  211. this.state = state;
  212. }
  213. public String getPersId() {
  214. return persId;
  215. }
  216. public void setPersId(String persId) {
  217. this.persId = persId;
  218. }
  219. public Date getIntm() {
  220. return intm;
  221. }
  222. public void setIntm(Date intm) {
  223. this.intm = intm;
  224. }
  225. public Date getUptm() {
  226. return uptm;
  227. }
  228. public void setUptm(Date uptm) {
  229. this.uptm = uptm;
  230. }
  231. public String getGroupId() {
  232. return groupId;
  233. }
  234. public void setGroupId(String groupId) {
  235. this.groupId = groupId;
  236. }
  237. public String getDataStat() {
  238. return dataStat;
  239. }
  240. public void setDataStat(String dataStat) {
  241. this.dataStat = dataStat;
  242. }
  243. public String getSttm() {
  244. return sttm;
  245. }
  246. public void setSttm(String sttm) {
  247. this.sttm = sttm;
  248. }
  249. public String getEntm() {
  250. return entm;
  251. }
  252. public void setEntm(String entm) {
  253. this.entm = entm;
  254. }
  255. }