admin
2020-04-29 9b4cdc2ab8f46336dffea4c4145b4fd35d4c2dad
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
38
39
40
41
42
43
package com.yeshi.fanli.dto.taobao;
 
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
 
/**
 * 大淘客过滤结果
 * @author Administrator
 *
 */
public class DaTaoKeFilterResult {
    public final static int FILTER_TYPE_NONE = 0;// 没有过滤
 
    public final static int FILTER_TYPE_PRICE = 1;// 过滤了价格
 
    public final static int FILTER_TYPE_COUPON = 2;// 过滤了券
 
    public final static int FILTER_TYPE_PRICE_AND_COUPON = 12;// 过滤了券和价格
 
    private TaoBaoGoodsBrief goods;
    private int filterType;
 
    public DaTaoKeFilterResult(TaoBaoGoodsBrief goods, int filterType) {
        super();
        this.goods = goods;
        this.filterType = filterType;
    }
 
    public TaoBaoGoodsBrief getGoods() {
        return goods;
    }
 
    public void setGoods(TaoBaoGoodsBrief goods) {
        this.goods = goods;
    }
 
    public int getFilterType() {
        return filterType;
    }
 
    public void setFilterType(int filterType) {
        this.filterType = filterType;
    }
}