| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- package cn.com.goldenwater.dcproj.dto;
- import java.io.Serializable;
- import java.util.Date;
- import java.util.List;
- /**
- * Created by 61618 on 2019/3/4.
- */
- public class AdUpDto implements Serializable {
- private String guid;
- private String adCode;
- private String adName;
- private String adType;
- private Double lowLeftLong;
- private Double lowLeftLat;
- private Double upRightLong;
- private Double upRightLat;
- private String adFcode;
- private String adGrad;
- private String upAdGuid;
- private String note;
- private Date collTime;
- private Date updTime;
- private String recPers;
- private String stat;
- private String adFullName;
- private List<AdUpDto> adUpDtoList;
- public String getAdFcode() {
- return adFcode;
- }
- public void setAdFcode(String adFcode) {
- this.adFcode = adFcode;
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getAdType() {
- return adType;
- }
- public void setAdType(String adType) {
- this.adType = adType;
- }
- public Double getLowLeftLong() {
- return lowLeftLong;
- }
- public void setLowLeftLong(Double lowLeftLong) {
- this.lowLeftLong = lowLeftLong;
- }
- public Double getLowLeftLat() {
- return lowLeftLat;
- }
- public void setLowLeftLat(Double lowLeftLat) {
- this.lowLeftLat = lowLeftLat;
- }
- public Double getUpRightLong() {
- return upRightLong;
- }
- public void setUpRightLong(Double upRightLong) {
- this.upRightLong = upRightLong;
- }
- public Double getUpRightLat() {
- return upRightLat;
- }
- public void setUpRightLat(Double upRightLat) {
- this.upRightLat = upRightLat;
- }
- public String getAdGrad() {
- return adGrad;
- }
- public void setAdGrad(String adGrad) {
- this.adGrad = adGrad;
- }
- public String getUpAdGuid() {
- return upAdGuid;
- }
- public void setUpAdGuid(String upAdGuid) {
- this.upAdGuid = upAdGuid;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public Date getCollTime() {
- return collTime;
- }
- public void setCollTime(Date collTime) {
- this.collTime = collTime;
- }
- public Date getUpdTime() {
- return updTime;
- }
- public void setUpdTime(Date updTime) {
- this.updTime = updTime;
- }
- public String getRecPers() {
- return recPers;
- }
- public void setRecPers(String recPers) {
- this.recPers = recPers;
- }
- public String getStat() {
- return stat;
- }
- public void setStat(String stat) {
- this.stat = stat;
- }
- public String getAdFullName() {
- return adFullName;
- }
- public void setAdFullName(String adFullName) {
- this.adFullName = adFullName;
- }
- public List<AdUpDto> getAdUpDtoList() {
- return adUpDtoList;
- }
- public void setAdUpDtoList(List<AdUpDto> adUpDtoList) {
- this.adUpDtoList = adUpDtoList;
- }
- @Override
- public String toString() {
- return "AdUpDto{" +
- "guid='" + guid + '\'' +
- ", adCode='" + adCode + '\'' +
- ", adName='" + adName + '\'' +
- ", adType='" + adType + '\'' +
- ", lowLeftLong=" + lowLeftLong +
- ", lowLeftLat=" + lowLeftLat +
- ", upRightLong=" + upRightLong +
- ", upRightLat=" + upRightLat +
- ", adGrad='" + adGrad + '\'' +
- ", upAdGuid='" + upAdGuid + '\'' +
- ", note='" + note + '\'' +
- ", collTime=" + collTime +
- ", updTime=" + updTime +
- ", recPers='" + recPers + '\'' +
- ", stat='" + stat + '\'' +
- ", adFullName='" + adFullName + '\'' +
- ", adUpDtoList=" + adUpDtoList +
- '}';
- }
- }
|