87b7f7b85e5a57489848fb2c1d42eee67e4ae7a9.svn-base 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * @author lhc
  9. * @date 2019/11/25 17:52
  10. */
  11. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  12. public class AttScnsrBaseDto extends BaseBean implements Serializable {
  13. private String id;
  14. // 编码
  15. @ApiModelProperty(value="编码",name="code")
  16. private String code;
  17. // 名称
  18. @ApiModelProperty(value="名称",name="nm")
  19. private String nm;
  20. // 行政区编码
  21. @ApiModelProperty(value="行政区编码",name="adCode")
  22. private String adCode;
  23. // 行政区名称
  24. @ApiModelProperty(value="行政区名称",name="adName")
  25. private String adName;
  26. // 工程详细位置
  27. @ApiModelProperty(value="工程详细位置",name="location")
  28. private String location;
  29. // 类型
  30. @ApiModelProperty(value="类型",name="type")
  31. private String type;
  32. // 状态
  33. @ApiModelProperty(value="状态",name="state")
  34. private String state;
  35. // 批复文号
  36. @ApiModelProperty(value="批复文号",name="atNo")
  37. private String atNo;
  38. // 批复时间
  39. @ApiModelProperty(value="批复时间",name="atNoTm")
  40. private Date atNoTm;
  41. // 批复单位
  42. @ApiModelProperty(value="批复单位",name="atDep")
  43. private String atDep;
  44. // 所属行业
  45. @ApiModelProperty(value="所属行业",name="bus")
  46. private String bus;
  47. // 建设单位
  48. @ApiModelProperty(value="建设单位",name="budDep")
  49. private String budDep;
  50. // 项目联系人
  51. @ApiModelProperty(value="项目联系人",name="prjtPer")
  52. private String prjtPer;
  53. // 项目联系人联系方式
  54. @ApiModelProperty(value="项目联系人联系方式",name="prjtPerPh")
  55. private String prjtPerPh;
  56. // 方案编制单位
  57. @ApiModelProperty(value="方案编制单位",name="proDep")
  58. private String proDep;
  59. // 监测单位
  60. @ApiModelProperty(value="监测单位",name="detDep")
  61. private String detDep;
  62. // 监理单位
  63. @ApiModelProperty(value="监理单位",name="supDep")
  64. private String supDep;
  65. // 经度
  66. @ApiModelProperty(value="经度",name="centerX")
  67. private Double centerX;
  68. // 纬度
  69. @ApiModelProperty(value="纬度",name="centerY")
  70. private Double centerY;
  71. // 高德经度
  72. @ApiModelProperty(value="高德经度",name="gdX")
  73. private Double gdX;
  74. // 高德纬度
  75. @ApiModelProperty(value="高德纬度",name="gdY")
  76. private Double gdY;
  77. // 创建人
  78. @ApiModelProperty(value="创建人",name="persId")
  79. private String persId;
  80. // 创建时间
  81. @ApiModelProperty(value="创建时间",name="intm")
  82. private Date intm;
  83. // 修改时间
  84. @ApiModelProperty(value="修改时间",name="uptm")
  85. private Date uptm;
  86. public AttScnsrBaseDto() {
  87. }
  88. public String getId() {
  89. return id;
  90. }
  91. public void setId(String id) {
  92. this.id = id;
  93. }
  94. public String getCode() {
  95. return code;
  96. }
  97. public void setCode(String code) {
  98. this.code = code;
  99. }
  100. public String getNm() {
  101. return nm;
  102. }
  103. public void setNm(String nm) {
  104. this.nm = nm;
  105. }
  106. public String getAdCode() {
  107. return adCode;
  108. }
  109. public void setAdCode(String adCode) {
  110. this.adCode = adCode;
  111. }
  112. public String getAdName() {
  113. return adName;
  114. }
  115. public void setAdName(String adName) {
  116. this.adName = adName;
  117. }
  118. public String getLocation() {
  119. return location;
  120. }
  121. public void setLocation(String location) {
  122. this.location = location;
  123. }
  124. public String getAtNo() {
  125. return atNo;
  126. }
  127. public void setAtNo(String atNo) {
  128. this.atNo = atNo;
  129. }
  130. public Date getAtNoTm() {
  131. return atNoTm;
  132. }
  133. public void setAtNoTm(Date atNoTm) {
  134. this.atNoTm = atNoTm;
  135. }
  136. public String getAtDep() {
  137. return atDep;
  138. }
  139. public void setAtDep(String atDep) {
  140. this.atDep = atDep;
  141. }
  142. public String getBus() {
  143. return bus;
  144. }
  145. public void setBus(String bus) {
  146. this.bus = bus;
  147. }
  148. public String getBudDep() {
  149. return budDep;
  150. }
  151. public void setBudDep(String budDep) {
  152. this.budDep = budDep;
  153. }
  154. public String getPrjtPer() {
  155. return prjtPer;
  156. }
  157. public void setPrjtPer(String prjtPer) {
  158. this.prjtPer = prjtPer;
  159. }
  160. public String getPrjtPerPh() {
  161. return prjtPerPh;
  162. }
  163. public void setPrjtPerPh(String prjtPerPh) {
  164. this.prjtPerPh = prjtPerPh;
  165. }
  166. public String getProDep() {
  167. return proDep;
  168. }
  169. public void setProDep(String proDep) {
  170. this.proDep = proDep;
  171. }
  172. public String getDetDep() {
  173. return detDep;
  174. }
  175. public void setDetDep(String detDep) {
  176. this.detDep = detDep;
  177. }
  178. public String getSupDep() {
  179. return supDep;
  180. }
  181. public void setSupDep(String supDep) {
  182. this.supDep = supDep;
  183. }
  184. public Double getCenterX() {
  185. return centerX;
  186. }
  187. public void setCenterX(Double centerX) {
  188. this.centerX = centerX;
  189. }
  190. public Double getCenterY() {
  191. return centerY;
  192. }
  193. public void setCenterY(Double centerY) {
  194. this.centerY = centerY;
  195. }
  196. public Double getGdX() {
  197. return gdX;
  198. }
  199. public void setGdX(Double gdX) {
  200. this.gdX = gdX;
  201. }
  202. public Double getGdY() {
  203. return gdY;
  204. }
  205. public void setGdY(Double gdY) {
  206. this.gdY = gdY;
  207. }
  208. public String getPersId() {
  209. return persId;
  210. }
  211. public void setPersId(String persId) {
  212. this.persId = persId;
  213. }
  214. public Date getIntm() {
  215. return intm;
  216. }
  217. public void setIntm(Date intm) {
  218. this.intm = intm;
  219. }
  220. public Date getUptm() {
  221. return uptm;
  222. }
  223. public void setUptm(Date uptm) {
  224. this.uptm = uptm;
  225. }
  226. public String getType() {
  227. return type;
  228. }
  229. public void setType(String type) {
  230. this.type = type;
  231. }
  232. public String getState() {
  233. return state;
  234. }
  235. public void setState(String state) {
  236. this.state = state;
  237. }
  238. @Override
  239. public String toString() {
  240. return "AttScnsrBase [" + "id=" + id + ", code=" + code + ", nm=" + nm + ", adCode=" + adCode + ", adName=" + adName + ", location=" + location + ", atNo=" + atNo + ", atNoTm=" + atNoTm + ", atDep=" + atDep + ", bus=" + bus + ", budDep=" + budDep + ", prjtPer=" + prjtPer + ", prjtPerPh=" + prjtPerPh + ", proDep=" + proDep + ", detDep=" + detDep + ", supDep=" + supDep + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", type=" + type + ", state=" + state + "]";
  241. }
  242. }