97634b8716cdeebb70f6510e59537c60db14bf70.svn-base 4.2 KB

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