package cn.com.goldenwater.dcproj.dto; import cn.com.goldenwater.dcproj.model.RgstrInfo; import java.util.Date; /** * Created by 61618 on 2019/4/20. */ public class AttSupAdBase extends RgstrInfo { private String guid; private String code; private String name; private String adType; private Double lowLeftLong; private Double lowLeftLat; private Double upRightLong; private Double upRightLat; 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 Double lgtd; private Double lttd; private String id; private String pnm; public String getGuid() { return guid; } public void setGuid(String guid) { this.guid = guid; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } 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 Double getLgtd() { return lgtd; } public void setLgtd(Double lgtd) { this.lgtd = lgtd; } public Double getLttd() { return lttd; } public void setLttd(Double lttd) { this.lttd = lttd; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getPnm() { return pnm; } public void setPnm(String pnm) { this.pnm = pnm; } @Override public String toString() { return "AttSupAdBase{" + "guid='" + guid + '\'' + ", code='" + code + '\'' + ", name='" + name + '\'' + ", 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 + '\'' + ", lgtd=" + lgtd + ", lttd=" + lttd + ", id='" + id + '\'' + ", pnm='" + pnm + '\'' + '}'; } }