7a442ae21984fc0c456055ba4c26684ee546bfdd.svn-base 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * Created by 61618 on 2019/2/25.
  6. */
  7. public class AttPersAd extends PersObj implements Serializable {
  8. private String guid;
  9. private String adCode;
  10. private String adName;
  11. private String adType;
  12. private Double lowLeftLong;
  13. private Double lowLeftLat;
  14. private Double upRightLong;
  15. private Double upRightLat;
  16. private String adGrad;
  17. private String upAdGuid;
  18. private String note;
  19. private Date collTime;
  20. private Date updTime;
  21. private String recPers;
  22. private String stat;
  23. public String getGuid() {
  24. return guid;
  25. }
  26. public void setGuid(String guid) {
  27. this.guid = guid;
  28. }
  29. public String getAdCode() {
  30. return adCode;
  31. }
  32. public void setAdCode(String adCode) {
  33. this.adCode = adCode;
  34. }
  35. public String getAdName() {
  36. return adName;
  37. }
  38. public void setAdName(String adName) {
  39. this.adName = adName;
  40. }
  41. public String getAdType() {
  42. return adType;
  43. }
  44. public void setAdType(String adType) {
  45. this.adType = adType;
  46. }
  47. public Double getLowLeftLong() {
  48. return lowLeftLong;
  49. }
  50. public void setLowLeftLong(Double lowLeftLong) {
  51. this.lowLeftLong = lowLeftLong;
  52. }
  53. public Double getLowLeftLat() {
  54. return lowLeftLat;
  55. }
  56. public void setLowLeftLat(Double lowLeftLat) {
  57. this.lowLeftLat = lowLeftLat;
  58. }
  59. public Double getUpRightLong() {
  60. return upRightLong;
  61. }
  62. public void setUpRightLong(Double upRightLong) {
  63. this.upRightLong = upRightLong;
  64. }
  65. public Double getUpRightLat() {
  66. return upRightLat;
  67. }
  68. public void setUpRightLat(Double upRightLat) {
  69. this.upRightLat = upRightLat;
  70. }
  71. public String getAdGrad() {
  72. return adGrad;
  73. }
  74. public void setAdGrad(String adGrad) {
  75. this.adGrad = adGrad;
  76. }
  77. public String getUpAdGuid() {
  78. return upAdGuid;
  79. }
  80. public void setUpAdGuid(String upAdGuid) {
  81. this.upAdGuid = upAdGuid;
  82. }
  83. public String getNote() {
  84. return note;
  85. }
  86. public void setNote(String note) {
  87. this.note = note;
  88. }
  89. public Date getCollTime() {
  90. return collTime;
  91. }
  92. public void setCollTime(Date collTime) {
  93. this.collTime = collTime;
  94. }
  95. public Date getUpdTime() {
  96. return updTime;
  97. }
  98. public void setUpdTime(Date updTime) {
  99. this.updTime = updTime;
  100. }
  101. public String getRecPers() {
  102. return recPers;
  103. }
  104. public void setRecPers(String recPers) {
  105. this.recPers = recPers;
  106. }
  107. public String getStat() {
  108. return stat;
  109. }
  110. public void setStat(String stat) {
  111. this.stat = stat;
  112. }
  113. @Override
  114. public String toString() {
  115. return "AttPersAd{" +
  116. "guid='" + guid + '\'' +
  117. ", adCode='" + adCode + '\'' +
  118. ", adName='" + adName + '\'' +
  119. ", adType='" + adType + '\'' +
  120. ", lowLeftLong=" + lowLeftLong +
  121. ", lowLeftLat=" + lowLeftLat +
  122. ", upRightLong=" + upRightLong +
  123. ", upRightLat=" + upRightLat +
  124. ", adGrad='" + adGrad + '\'' +
  125. ", upAdGuid='" + upAdGuid + '\'' +
  126. ", note='" + note + '\'' +
  127. ", collTime=" + collTime +
  128. ", updTime=" + updTime +
  129. ", recPers='" + recPers + '\'' +
  130. ", stat='" + stat + '\'' +
  131. '}';
  132. }
  133. }