package com.yeshi.fanli.dto.taobao.haodanku;
|
|
import java.util.List;
|
|
import com.yeshi.fanli.entity.taobao.haodanku.HDKGoodsDetail;
|
|
/**
|
* 好单库微信发圈内容
|
* @author Administrator
|
*
|
*/
|
public class HDKGoodsListResultDTO {
|
private List<HDKGoodsDetail> goodsList;
|
private List<HDKWXCircleContentDTO> list;
|
private Integer minId;
|
|
public HDKGoodsListResultDTO() {
|
|
}
|
|
public HDKGoodsListResultDTO(List<HDKGoodsDetail> goodsList, Integer minId) {
|
super();
|
this.goodsList = goodsList;
|
this.minId = minId;
|
}
|
|
public List<HDKGoodsDetail> getGoodsList() {
|
return goodsList;
|
}
|
|
public void setGoodsList(List<HDKGoodsDetail> goodsList) {
|
this.goodsList = goodsList;
|
}
|
|
public Integer getMinId() {
|
return minId;
|
}
|
|
public void setMinId(Integer minId) {
|
this.minId = minId;
|
}
|
|
public List<HDKWXCircleContentDTO> getList() {
|
return list;
|
}
|
|
public void setList(List<HDKWXCircleContentDTO> list) {
|
this.list = list;
|
}
|
}
|