package com.haicaojie.android.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by weikou2015 on 2018/7/3.
|
*/
|
|
public class ShopInfo implements Serializable {
|
|
@Expose
|
private String pictureUrl;
|
@Expose
|
private String shopTitle;
|
@Expose
|
private String shopType;
|
|
public String getPictureUrl() {
|
return pictureUrl;
|
}
|
|
public void setPictureUrl(String pictureUrl) {
|
this.pictureUrl = pictureUrl;
|
}
|
|
public String getShopTitle() {
|
return shopTitle;
|
}
|
|
public void setShopTitle(String shopTitle) {
|
this.shopTitle = shopTitle;
|
}
|
|
public String getShopType() {
|
return shopType;
|
}
|
|
public void setShopType(String shopType) {
|
this.shopType = shopType;
|
}
|
}
|