package com.yeshi.fanli.dto.jd;
|
|
import java.io.Serializable;
|
|
public class JDShopInfo implements Serializable{
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private Integer shopId;
|
private String shopName;
|
public Integer getShopId() {
|
return shopId;
|
}
|
public void setShopId(Integer shopId) {
|
this.shopId = shopId;
|
}
|
public String getShopName() {
|
return shopName;
|
}
|
public void setShopName(String shopName) {
|
this.shopName = shopName;
|
}
|
|
|
}
|