| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- 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 + '\'' +
- '}';
- }
- }
|