Browse Source

fix(lottery):分页获取中奖信息参数调整

wangyc 7 years ago
parent
commit
0d2cbe4465

+ 2 - 1
src/main/java/com/uas/platform/b2c/common/lottery/service/impl/WinningHistoryServiceImpl.java

@@ -67,7 +67,8 @@ public class WinningHistoryServiceImpl implements WinningHistoryService {
         params.put("activityCode", activityCode);
         params.put("useruu", SystemSession.getUser().getUserUU());
         params.put("enuu", SystemSession.getUser().getEnterprise() == null ? 0 : SystemSession.getUser().getEnterprise().getUu());
-        params.put("pageParams", pageParams);
+        params.put("page", pageParams.getPage());
+        params.put("count", pageParams.getSize());
 
         try {
             Response response = HttpUtil.sendGetRequest(sysConf.getLottery() + GET_WINNING_HOSTORIES_PERSONAL_URL, params);