ed55f5d6215762d43da1c27a332148fb48dced29.svn-base 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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:AttPrdCstrProjBase
  9. *
  10. * @author lune
  11. * @date 2019-12-12
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class AttPrdCstrProjBase 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("项目类型")
  22. private String type;
  23. @ApiModelProperty("行政区编码")
  24. private String adCode;
  25. @ApiModelProperty("行政区名称")
  26. private String adName;
  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. @ApiModelProperty("督查状态")
  44. private String state;
  45. public AttPrdCstrProjBase() {
  46. }
  47. public String getState() {
  48. return state;
  49. }
  50. public void setState(String state) {
  51. this.state = state;
  52. }
  53. public String getId() {
  54. return id;
  55. }
  56. public void setId(String id) {
  57. this.id = id;
  58. }
  59. public String getCode() {
  60. return code;
  61. }
  62. public void setCode(String code) {
  63. this.code = code;
  64. }
  65. public String getName() {
  66. return name;
  67. }
  68. public void setName(String name) {
  69. this.name = name;
  70. }
  71. public String getType() {
  72. return type;
  73. }
  74. public void setType(String type) {
  75. this.type = type;
  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 getLocation() {
  90. return location;
  91. }
  92. public void setLocation(String location) {
  93. this.location = location;
  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 String getPersId() {
  120. return persId;
  121. }
  122. public void setPersId(String persId) {
  123. this.persId = persId;
  124. }
  125. public Date getIntm() {
  126. return intm;
  127. }
  128. public void setIntm(Date intm) {
  129. this.intm = intm;
  130. }
  131. public Date getUptm() {
  132. return uptm;
  133. }
  134. public void setUptm(Date uptm) {
  135. this.uptm = uptm;
  136. }
  137. @Override
  138. public String toString() {
  139. return "AttPrdCstrProjBase [" + "id=" + id + ", code=" + code + ", name=" + name + ", type=" + type + ", adCode=" + adCode + ", adName=" + adName + ", location=" + location + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + "]";
  140. }
  141. }