...
|
...
|
@@ -55,9 +55,13 @@ public class CollageActivityIndexBaseService extends BaseService { |
|
|
private Map<String, Object> getCollageActivityInfo(Map<String, Object> esMap) {
|
|
|
Map<String, Object> map = new HashMap<String, Object>();
|
|
|
map.put("activity_id", MapUtils.getIntValue(esMap, "activityId", 0));
|
|
|
map.put("people_num", MapUtils.getIntValue(esMap, "peopleNum", 0));
|
|
|
map.put("begin_time", MapUtils.getIntValue(esMap, "beginTime", 0));
|
|
|
map.put("end_time", MapUtils.getIntValue(esMap, "endTime", 0));
|
|
|
map.put("people_num", MapUtils.getIntValue(esMap, "peopleNum", 0));
|
|
|
map.put("join_limit", MapUtils.getIntValue(esMap, "joinLimit", 0));
|
|
|
map.put("open_limit", MapUtils.getIntValue(esMap, "openLimit", 0));
|
|
|
map.put("product_limit", MapUtils.getIntValue(esMap, "productLimit", 0));
|
|
|
map.put("pay_limit", MapUtils.getIntValue(esMap, "payLimit", 0));
|
|
|
return map;
|
|
|
}
|
|
|
|
...
|
...
|
|