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 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 getAdUpDtoList() { return adUpDtoList; } public void setAdUpDtoList(List 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 + '}'; } }