Authored by hugufei

添加RecallCommonConstants

package com.yoho.search.recall.scene.models;
import com.yoho.search.core.personalized.models.SortPriceArea;
import java.io.Serializable;
import java.util.List;
/**
* 个性化因子参数
*/
public class PagePersonalFactor implements Serializable{
private static final long serialVersionUID = 89030356435559223L;
private List<Integer> brandIds;
private List<SortPriceArea> sortPriceAreas;
public PagePersonalFactor() {
}
public PagePersonalFactor(List<Integer> brandIds, List<SortPriceArea> sortPriceAreas){
this.brandIds = brandIds;
this.sortPriceAreas = sortPriceAreas;
}
public void setBrandIds(List<Integer> brandIds) {
this.brandIds = brandIds;
}
public void setSortPriceAreas(List<SortPriceArea> sortPriceAreas) {
this.sortPriceAreas = sortPriceAreas;
}
public List<Integer> getBrandIds() {
return brandIds;
}
public List<SortPriceArea> getSortPriceAreas() {
return sortPriceAreas;
}
}