|
@@ -544,12 +544,18 @@ public class StatisticalReportController extends BaseRESTfulController {
|
|
|
Integer pageSize,
|
|
|
String startTime,
|
|
|
String endTime,
|
|
|
- String con
|
|
|
+ String con,
|
|
|
+ String isPage
|
|
|
){
|
|
|
if (con != null && !"undefined".equals(con)) {
|
|
|
mapValue.put("con",con);
|
|
|
}
|
|
|
+
|
|
|
DataChange.queryDataByDateTime(startTime, endTime, mapValue,sdfDateTime);//根据时间段查询数据
|
|
|
+ if(isPage != null && !"".equals(isPage)){
|
|
|
+ List<Map<String, Object>> report = statisticalReportService.getLoaderForResultDetail(mapValue);
|
|
|
+ return success(report);
|
|
|
+ }
|
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
|
//分页数据
|
|
|
List<Map<String, Object>> report = statisticalReportService.getLoaderForResultDetail(mapValue);
|