| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- /**
- * AttAdBaseParam
- *
- * @author lune
- * @date 2019-2-19
- */
- public class AttAdBaseParam extends PageParam 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 adGrad;
- private String upAdGuid;
- private String note;
- private Date collTime;
- private Date updTime;
- private String recPers;
- private String stat;
- public AttAdBaseParam() {
- }
- 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;
- }
- }
|