添加RecallCommonConstants
Showing
5 changed files
with
0 additions
and
41 deletions
service/src/main/java/com/yoho/search/recall/scene/models/PagePersonalFactor.java
deleted
100644 → 0
1 | -package com.yoho.search.recall.scene.models; | ||
2 | - | ||
3 | -import com.yoho.search.core.personalized.models.SortPriceArea; | ||
4 | - | ||
5 | -import java.io.Serializable; | ||
6 | -import java.util.List; | ||
7 | - | ||
8 | -/** | ||
9 | - * 个性化因子参数 | ||
10 | - */ | ||
11 | -public class PagePersonalFactor implements Serializable{ | ||
12 | - | ||
13 | - private static final long serialVersionUID = 89030356435559223L; | ||
14 | - | ||
15 | - private List<Integer> brandIds; | ||
16 | - private List<SortPriceArea> sortPriceAreas; | ||
17 | - | ||
18 | - public PagePersonalFactor() { | ||
19 | - } | ||
20 | - | ||
21 | - public PagePersonalFactor(List<Integer> brandIds, List<SortPriceArea> sortPriceAreas){ | ||
22 | - this.brandIds = brandIds; | ||
23 | - this.sortPriceAreas = sortPriceAreas; | ||
24 | - } | ||
25 | - | ||
26 | - public void setBrandIds(List<Integer> brandIds) { | ||
27 | - this.brandIds = brandIds; | ||
28 | - } | ||
29 | - | ||
30 | - public void setSortPriceAreas(List<SortPriceArea> sortPriceAreas) { | ||
31 | - this.sortPriceAreas = sortPriceAreas; | ||
32 | - } | ||
33 | - | ||
34 | - public List<Integer> getBrandIds() { | ||
35 | - return brandIds; | ||
36 | - } | ||
37 | - | ||
38 | - public List<SortPriceArea> getSortPriceAreas() { | ||
39 | - return sortPriceAreas; | ||
40 | - } | ||
41 | -} |
-
Please register or login to post a comment