|
@@ -181,13 +181,11 @@ public class OpenDouble11StaticsController extends BaseController {
|
|
|
JSON.parseObject(config.getParanValue(), Double11StaticWrapper.SaleStaticConfigParam.class);
|
|
|
temp.setSaleStaticsType(query.getSaleStaticsType());
|
|
|
setQueryParam(temp, configParam);
|
|
|
- Map<String, Object> tempMap = new HashMap<>();
|
|
|
- MapUtil.populateMap(tempMap, temp);
|
|
|
+ Map<String, Object> params = new HashMap<>();
|
|
|
+ MapUtil.populateMap(params, temp);
|
|
|
|
|
|
query.setOrderBy("t.pay_time_");
|
|
|
- Map<String, Object> params = new HashMap<>();
|
|
|
MapUtil.populateMap(params, query);
|
|
|
- params.putAll(tempMap);
|
|
|
PageInfo<Double11StaticWrapper.SaleStaticsStudent> pageInfo = new PageInfo<>(query.getPage(), query.getRows());
|
|
|
List<Double11StaticWrapper.SaleStaticsStudent> dataList = new ArrayList<>();
|
|
|
Integer count = studentPaymentOrderDao.queryPaymentStudentCount(params);
|