admin
2020-06-10 271ae63c20fcbe28d29c47f1881138ff6551a2a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 Integer minId;
 
    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;
    }
}