Commit 61eb432b authored by 蔡镇泽's avatar 蔡镇泽

待遇申请管理列表

parent 86087ffc
......@@ -35,11 +35,16 @@ public class DisableController {
* @param certiCode 参保人身份证号码
* @param treatmentType 待遇类型
* @param applyStatus 审核状态
* @param currentPage 当前页
* @return 待遇申请管理列表
*/
@RequestMapping("/applicationManagementList")
public Result<List<ApplicationManagementVO>> disableList(String organId, String districtProvincial, String districtCity, String districtArea, String realName, String certiCode, String treatmentType, String applyStatus) {
IPage<ApplicationManagementVO> iPage = disableService.applicationManagementList(organId, districtProvincial, districtCity, districtArea, realName, certiCode, treatmentType, applyStatus, 1, 10);
public Result<List<ApplicationManagementVO>> disableList(String organId, String districtProvincial,
String districtCity, String districtArea,
String realName, String certiCode, String treatmentType,
String applyStatus, int currentPage) {
IPage<ApplicationManagementVO> iPage = disableService.applicationManagementList(organId, districtProvincial,
districtCity, districtArea, realName, certiCode, treatmentType, applyStatus, currentPage, 10);
return Result.success(iPage.getRecords());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment