43ac951df7652b493426be327fe4facd2a9cdd95.svn-base 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. /**
  7. * AttAdBaseParam
  8. *
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. public class AttAdBaseParam extends PageParam implements Serializable {
  13. private String guid;
  14. private String adCode;
  15. private String adName;
  16. private String adType;
  17. private Double lowLeftLong;
  18. private Double lowLeftLat;
  19. private Double upRightLong;
  20. private Double upRightLat;
  21. private String adGrad;
  22. private String upAdGuid;
  23. private String note;
  24. private Date collTime;
  25. private Date updTime;
  26. private String recPers;
  27. private String stat;
  28. public AttAdBaseParam() {
  29. }
  30. public String getGuid() {
  31. return guid;
  32. }
  33. public void setGuid(String guid) {
  34. this.guid = guid;
  35. }
  36. public String getAdCode() {
  37. return adCode;
  38. }
  39. public void setAdCode(String adCode) {
  40. this.adCode = adCode;
  41. }
  42. public String getAdName() {
  43. return adName;
  44. }
  45. public void setAdName(String adName) {
  46. this.adName = adName;
  47. }
  48. public String getAdType() {
  49. return adType;
  50. }
  51. public void setAdType(String adType) {
  52. this.adType = adType;
  53. }
  54. public Double getLowLeftLong() {
  55. return lowLeftLong;
  56. }
  57. public void setLowLeftLong(Double lowLeftLong) {
  58. this.lowLeftLong = lowLeftLong;
  59. }
  60. public Double getLowLeftLat() {
  61. return lowLeftLat;
  62. }
  63. public void setLowLeftLat(Double lowLeftLat) {
  64. this.lowLeftLat = lowLeftLat;
  65. }
  66. public Double getUpRightLong() {
  67. return upRightLong;
  68. }
  69. public void setUpRightLong(Double upRightLong) {
  70. this.upRightLong = upRightLong;
  71. }
  72. public Double getUpRightLat() {
  73. return upRightLat;
  74. }
  75. public void setUpRightLat(Double upRightLat) {
  76. this.upRightLat = upRightLat;
  77. }
  78. public String getAdGrad() {
  79. return adGrad;
  80. }
  81. public void setAdGrad(String adGrad) {
  82. this.adGrad = adGrad;
  83. }
  84. public String getUpAdGuid() {
  85. return upAdGuid;
  86. }
  87. public void setUpAdGuid(String upAdGuid) {
  88. this.upAdGuid = upAdGuid;
  89. }
  90. public String getNote() {
  91. return note;
  92. }
  93. public void setNote(String note) {
  94. this.note = note;
  95. }
  96. public Date getCollTime() {
  97. return collTime;
  98. }
  99. public void setCollTime(Date collTime) {
  100. this.collTime = collTime;
  101. }
  102. public Date getUpdTime() {
  103. return updTime;
  104. }
  105. public void setUpdTime(Date updTime) {
  106. this.updTime = updTime;
  107. }
  108. public String getRecPers() {
  109. return recPers;
  110. }
  111. public void setRecPers(String recPers) {
  112. this.recPers = recPers;
  113. }
  114. public String getStat() {
  115. return stat;
  116. }
  117. public void setStat(String stat) {
  118. this.stat = stat;
  119. }
  120. }