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;
|
}
|
}
|