62,634
社区成员




public class ShopGoodsBuyerParamDto {
Integer shopId;
List<Integer> goodsCodeList;
Buyer buyer;
public Integer getShopId() {
return shopId;
}
public void setShopId(Integer shopId) {
this.shopId = shopId;
}
public List<Integer> getGoodsCodeList() {
return goodsCodeList;
}
public void setGoodsCodeList(List<Integer> goodsCodeList) {
this.goodsCodeList = goodsCodeList;
}
public Buyer getBuyer() {
return buyer;
}
public void setBuyer(Buyer buyer) {
this.buyer = buyer;
}
@Override
public String toString() {
return "ShopGoodsBuyerParamDto{" +
"shopId=" + shopId +
", goodsCodeList=" + goodsCodeList +
", buyer=" + buyer +
'}';
}
}
public class Buyer {
Integer id;
String name;
Integer cityId;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getCityId() {
return cityId;
}
public void setCityId(Integer cityId) {
this.cityId = cityId;
}
@Override
public String toString() {
return "Buyer{" +
"id=" + id +
", name='" + name + '\'' +
", cityId=" + cityId +
'}';
}
}