package com.yeshi.fanli.dto.vip.goods;
|
|
public class VIPStoreInfo {
|
private String storeId;// 店铺id
|
private String storeName;// 店铺名称
|
|
public String getStoreId() {
|
return storeId;
|
}
|
|
public void setStoreId(String storeId) {
|
this.storeId = storeId;
|
}
|
|
public String getStoreName() {
|
return storeName;
|
}
|
|
public void setStoreName(String storeName) {
|
this.storeName = storeName;
|
}
|
}
|