97fdd05b06eb4675456c842d83e6139af49b6e99.svn-base 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. package cn.com.goldenwater.dcproj.model;
  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. * entity:AttSamrmpBase
  9. *
  10. * @author lune
  11. * @date 2020-9-11
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class AttSamrmpBase extends BaseBean implements Serializable {
  15. @ApiModelProperty(value="主键ID", position = 1)
  16. private String id;
  17. @ApiModelProperty(value="工程项目名称", position = 2)
  18. private String prjName;
  19. @ApiModelProperty(value="所在河流", position = 3)
  20. private String rvName;
  21. @ApiModelProperty(value="规划河长(km)", position = 4)
  22. private String rvLong;
  23. @ApiModelProperty(value="规划总投资(万元)", position = 5)
  24. private String pgi;
  25. @ApiModelProperty(value="行政区编码", position = 6)
  26. private String adCode;
  27. @ApiModelProperty(value="行政区域描述", position = 7)
  28. private String adName;
  29. @ApiModelProperty(value="所在位置详细描述信息", position = 8)
  30. private String addr;
  31. @ApiModelProperty(value="PC经度", position = 9)
  32. private Double centerX;
  33. @ApiModelProperty(value="PC纬度", position = 10)
  34. private Double centerY;
  35. @ApiModelProperty(value="高德经度", position = 11)
  36. private Double gdX;
  37. @ApiModelProperty(value="高德纬度", position = 12)
  38. private Double gdY;
  39. @ApiModelProperty(value="创建时间", position = 13)
  40. private Date intm;
  41. @ApiModelProperty(value="最后修改时间", position = 14)
  42. private Date uptm;
  43. @ApiModelProperty(value="备注", position = 15)
  44. private String note;
  45. public AttSamrmpBase() {
  46. }
  47. public String getId() {
  48. return id;
  49. }
  50. public void setId(String id) {
  51. this.id = id;
  52. }
  53. public String getPrjName() {
  54. return prjName;
  55. }
  56. public void setPrjName(String prjName) {
  57. this.prjName = prjName;
  58. }
  59. public String getRvName() {
  60. return rvName;
  61. }
  62. public void setRvName(String rvName) {
  63. this.rvName = rvName;
  64. }
  65. public String getRvLong() {
  66. return rvLong;
  67. }
  68. public void setRvLong(String rvLong) {
  69. this.rvLong = rvLong;
  70. }
  71. public String getPgi() {
  72. return pgi;
  73. }
  74. public void setPgi(String pgi) {
  75. this.pgi = pgi;
  76. }
  77. public String getAdCode() {
  78. return adCode;
  79. }
  80. public void setAdCode(String adCode) {
  81. this.adCode = adCode;
  82. }
  83. public String getAdName() {
  84. return adName;
  85. }
  86. public void setAdName(String adName) {
  87. this.adName = adName;
  88. }
  89. public String getAddr() {
  90. return addr;
  91. }
  92. public void setAddr(String addr) {
  93. this.addr = addr;
  94. }
  95. public Double getCenterX() {
  96. return centerX;
  97. }
  98. public void setCenterX(Double centerX) {
  99. this.centerX = centerX;
  100. }
  101. public Double getCenterY() {
  102. return centerY;
  103. }
  104. public void setCenterY(Double centerY) {
  105. this.centerY = centerY;
  106. }
  107. public Double getGdX() {
  108. return gdX;
  109. }
  110. public void setGdX(Double gdX) {
  111. this.gdX = gdX;
  112. }
  113. public Double getGdY() {
  114. return gdY;
  115. }
  116. public void setGdY(Double gdY) {
  117. this.gdY = gdY;
  118. }
  119. public Date getIntm() {
  120. return intm;
  121. }
  122. public void setIntm(Date intm) {
  123. this.intm = intm;
  124. }
  125. public Date getUptm() {
  126. return uptm;
  127. }
  128. public void setUptm(Date uptm) {
  129. this.uptm = uptm;
  130. }
  131. public String getNote() {
  132. return note;
  133. }
  134. public void setNote(String note) {
  135. this.note = note;
  136. }
  137. @Override
  138. public String toString() {
  139. return "AttSamrmpBase [" + "id=" + id + ", prjName=" + prjName + ", rvName=" + rvName + ", rvLong=" + rvLong + ", pgi=" + pgi + ", adCode=" + adCode + ", adName=" + adName + ", addr=" + addr + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + "]";
  140. }
  141. }