15b75c48bfe2d96bfad03ae15e68b3942ee03e84.svn-base 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * AttOtherBaseParam
  9. *
  10. * @author lune
  11. * @date 2019-7-19
  12. */
  13. public class AttOtherBaseParam extends PageParam implements Serializable {
  14. @ApiModelProperty("主键id")
  15. private String id;
  16. @ApiModelProperty("项目编号")
  17. private String code;
  18. @ApiModelProperty("项目名称")
  19. private String name;
  20. @ApiModelProperty("项目类型")
  21. private String type;
  22. @ApiModelProperty("所属流域机构")
  23. private String admOrg;
  24. @ApiModelProperty("行政区编码")
  25. private String adCode;
  26. @ApiModelProperty("工程详细位置")
  27. private String location;
  28. @ApiModelProperty("经度")
  29. private Double centerX;
  30. @ApiModelProperty("纬度")
  31. private Double centerY;
  32. @ApiModelProperty("高德经度")
  33. private Double gdX;
  34. @ApiModelProperty("高德纬度")
  35. private Double gdY;
  36. @ApiModelProperty("创建人")
  37. private String persId;
  38. @ApiModelProperty("创建时间")
  39. private Date intm;
  40. @ApiModelProperty("修改时间")
  41. private Date uptm;
  42. public AttOtherBaseParam() {
  43. }
  44. public String getId() {
  45. return id;
  46. }
  47. public void setId(String id) {
  48. this.id = id;
  49. }
  50. public String getCode() {
  51. return code;
  52. }
  53. public void setCode(String code) {
  54. this.code = code;
  55. }
  56. public String getName() {
  57. return name;
  58. }
  59. public void setName(String name) {
  60. this.name = name;
  61. }
  62. public String getType() {
  63. return type;
  64. }
  65. public void setType(String type) {
  66. this.type = type;
  67. }
  68. public String getAdmOrg() {
  69. return admOrg;
  70. }
  71. public void setAdmOrg(String admOrg) {
  72. this.admOrg = admOrg;
  73. }
  74. public String getAdCode() {
  75. return adCode;
  76. }
  77. public void setAdCode(String adCode) {
  78. this.adCode = adCode;
  79. }
  80. public String getLocation() {
  81. return location;
  82. }
  83. public void setLocation(String location) {
  84. this.location = location;
  85. }
  86. public Double getCenterX() {
  87. return centerX;
  88. }
  89. public void setCenterX(Double centerX) {
  90. this.centerX = centerX;
  91. }
  92. public Double getCenterY() {
  93. return centerY;
  94. }
  95. public void setCenterY(Double centerY) {
  96. this.centerY = centerY;
  97. }
  98. public Double getGdX() {
  99. return gdX;
  100. }
  101. public void setGdX(Double gdX) {
  102. this.gdX = gdX;
  103. }
  104. public Double getGdY() {
  105. return gdY;
  106. }
  107. public void setGdY(Double gdY) {
  108. this.gdY = gdY;
  109. }
  110. public String getPersId() {
  111. return persId;
  112. }
  113. public void setPersId(String persId) {
  114. this.persId = persId;
  115. }
  116. public Date getIntm() {
  117. return intm;
  118. }
  119. public void setIntm(Date intm) {
  120. this.intm = intm;
  121. }
  122. public Date getUptm() {
  123. return uptm;
  124. }
  125. public void setUptm(Date uptm) {
  126. this.uptm = uptm;
  127. }
  128. }