8e0a3fc03308d5e5a68b4d340d36ba2d4090cc32.svn-base 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. /**
  6. * Created by jinshui on 2019/7/19.
  7. */
  8. public class AttFscBaseDto implements Serializable {
  9. @ApiModelProperty("主键id")
  10. private String id;
  11. @ApiModelProperty("项目编号")
  12. private String code;
  13. @ApiModelProperty("项目名称")
  14. private String name;
  15. @ApiModelProperty("检查分类(1:水库;2:水闸;3:人饮;4:水利工程建设;5:水利工程运行)")
  16. private String type;
  17. @ApiModelProperty("所属流域机构")
  18. private String admOrg;
  19. @ApiModelProperty("行政区编码")
  20. private String adCode;
  21. @ApiModelProperty("工程详细位置")
  22. private String location;
  23. @ApiModelProperty("经度")
  24. private Double centerX;
  25. @ApiModelProperty("纬度")
  26. private Double centerY;
  27. @ApiModelProperty("高德经度")
  28. private Double gdX;
  29. @ApiModelProperty("高德纬度")
  30. private Double gdY;
  31. @ApiModelProperty("创建人")
  32. private String persId;
  33. @ApiModelProperty("创建时间")
  34. private Date intm;
  35. @ApiModelProperty("修改时间")
  36. private Date uptm;
  37. private String objId;
  38. private String state;
  39. public String getObjId() {
  40. return objId;
  41. }
  42. public void setObjId(String objId) {
  43. this.objId = objId;
  44. }
  45. public String getState() {
  46. return state;
  47. }
  48. public void setState(String state) {
  49. this.state = state;
  50. }
  51. public String getId() {
  52. return id;
  53. }
  54. public void setId(String id) {
  55. this.id = id;
  56. }
  57. public String getCode() {
  58. return code;
  59. }
  60. public void setCode(String code) {
  61. this.code = code;
  62. }
  63. public String getName() {
  64. return name;
  65. }
  66. public void setName(String name) {
  67. this.name = name;
  68. }
  69. public String getType() {
  70. return type;
  71. }
  72. public void setType(String type) {
  73. this.type = type;
  74. }
  75. public String getAdmOrg() {
  76. return admOrg;
  77. }
  78. public void setAdmOrg(String admOrg) {
  79. this.admOrg = admOrg;
  80. }
  81. public String getAdCode() {
  82. return adCode;
  83. }
  84. public void setAdCode(String adCode) {
  85. this.adCode = adCode;
  86. }
  87. public String getLocation() {
  88. return location;
  89. }
  90. public void setLocation(String location) {
  91. this.location = location;
  92. }
  93. public Double getCenterX() {
  94. return centerX;
  95. }
  96. public void setCenterX(Double centerX) {
  97. this.centerX = centerX;
  98. }
  99. public Double getCenterY() {
  100. return centerY;
  101. }
  102. public void setCenterY(Double centerY) {
  103. this.centerY = centerY;
  104. }
  105. public Double getGdX() {
  106. return gdX;
  107. }
  108. public void setGdX(Double gdX) {
  109. this.gdX = gdX;
  110. }
  111. public Double getGdY() {
  112. return gdY;
  113. }
  114. public void setGdY(Double gdY) {
  115. this.gdY = gdY;
  116. }
  117. public String getPersId() {
  118. return persId;
  119. }
  120. public void setPersId(String persId) {
  121. this.persId = persId;
  122. }
  123. public Date getIntm() {
  124. return intm;
  125. }
  126. public void setIntm(Date intm) {
  127. this.intm = intm;
  128. }
  129. public Date getUptm() {
  130. return uptm;
  131. }
  132. public void setUptm(Date uptm) {
  133. this.uptm = uptm;
  134. }
  135. @Override
  136. public String toString() {
  137. return "AttFscBaseDto{" +
  138. "id='" + id + '\'' +
  139. ", code='" + code + '\'' +
  140. ", name='" + name + '\'' +
  141. ", type='" + type + '\'' +
  142. ", admOrg='" + admOrg + '\'' +
  143. ", adCode='" + adCode + '\'' +
  144. ", location='" + location + '\'' +
  145. ", centerX=" + centerX +
  146. ", centerY=" + centerY +
  147. ", gdX=" + gdX +
  148. ", gdY=" + gdY +
  149. ", persId='" + persId + '\'' +
  150. ", intm=" + intm +
  151. ", uptm=" + uptm +
  152. ", objId='" + objId + '\'' +
  153. ", state='" + state + '\'' +
  154. '}';
  155. }
  156. }