0ee80925960094210efa8530bcfdeb6b6c9dab6c.svn-base 4.2 KB

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