|
@ -161,7 +161,7 @@ public class UserAnalysisController { |
|
|
*/ |
|
|
*/ |
|
|
@GetMapping("export/register") |
|
|
@GetMapping("export/register") |
|
|
public void exportRegister(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception { |
|
|
public void exportRegister(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception { |
|
|
PageData<UserDataRankResultDTO> pageData = userAnalysisService.pageUserDataRank(params); |
|
|
PageData<UserDataRankResultDTO> pageData = userAnalysisService.pageUserDataRankByGrid(params); |
|
|
ExcelUtils.exportExcelToTarget(response, "注册用户总数排名分析", pageData.getList(), RegisterExcel.class); |
|
|
ExcelUtils.exportExcelToTarget(response, "注册用户总数排名分析", pageData.getList(), RegisterExcel.class); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -176,7 +176,7 @@ public class UserAnalysisController { |
|
|
*/ |
|
|
*/ |
|
|
@GetMapping("export/party") |
|
|
@GetMapping("export/party") |
|
|
public void exportParty(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception { |
|
|
public void exportParty(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception { |
|
|
PageData<UserDataRankResultDTO> pageData = userAnalysisService.pageUserDataRank(params); |
|
|
PageData<UserDataRankResultDTO> pageData = userAnalysisService.pageUserDataRankByGrid(params); |
|
|
ExcelUtils.exportExcelToTarget(response, "党员排名分析", pageData.getList(), PartyAnalysExcel.class); |
|
|
ExcelUtils.exportExcelToTarget(response, "党员排名分析", pageData.getList(), PartyAnalysExcel.class); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|