| package com.doumee.keyCabinet.utils; | 
|   | 
| import java.io.Serializable; | 
|   | 
| public class AdListResponseParam implements Serializable { | 
|     private static final long serialVersionUID = 2536374791181166950L; | 
|     private String adId; | 
|     private String title; | 
|     private String type; | 
|     private String imgurl; | 
|     private String content; | 
|     private String link; | 
|     private String recPrd; | 
|     private String lastDate; | 
|     private String startDate; | 
|     private String addr; | 
|     private String isShopOnline; | 
|   | 
|     public AdListResponseParam() { | 
|     } | 
|   | 
|     public String getIsShopOnline() { | 
|         return this.isShopOnline; | 
|     } | 
|   | 
|     public void setIsShopOnline(String isShopOnline) { | 
|         this.isShopOnline = isShopOnline; | 
|     } | 
|   | 
|     public String getAddr() { | 
|         return this.addr; | 
|     } | 
|   | 
|     public void setAddr(String addr) { | 
|         this.addr = addr; | 
|     } | 
|   | 
|     public String getAdId() { | 
|         return this.adId; | 
|     } | 
|   | 
|     public void setAdId(String adId) { | 
|         this.adId = adId; | 
|     } | 
|   | 
|     public String getTitle() { | 
|         return this.title; | 
|     } | 
|   | 
|     public void setTitle(String title) { | 
|         this.title = title; | 
|     } | 
|   | 
|     public String getType() { | 
|         return this.type; | 
|     } | 
|   | 
|     public void setType(String type) { | 
|         this.type = type; | 
|     } | 
|   | 
|     public String getImgurl() { | 
|         return this.imgurl; | 
|     } | 
|   | 
|     public void setImgurl(String imgurl) { | 
|         this.imgurl = imgurl; | 
|     } | 
|   | 
|     public String getContent() { | 
|         return this.content; | 
|     } | 
|   | 
|     public void setContent(String content) { | 
|         this.content = content; | 
|     } | 
|   | 
|     public String getLink() { | 
|         return this.link; | 
|     } | 
|   | 
|     public void setLink(String link) { | 
|         this.link = link; | 
|     } | 
|   | 
|     public String getRecPrd() { | 
|         return this.recPrd; | 
|     } | 
|   | 
|     public void setRecPrd(String recPrd) { | 
|         this.recPrd = recPrd; | 
|     } | 
|   | 
|     public String getLastDate() { | 
|         return this.lastDate; | 
|     } | 
|   | 
|     public void setLastDate(String lastDate) { | 
|         this.lastDate = lastDate; | 
|     } | 
|   | 
|     public String getStartDate() { | 
|         return this.startDate; | 
|     } | 
|   | 
|     public void setStartDate(String startDate) { | 
|         this.startDate = startDate; | 
|     } | 
| } |