|
@@ -2,7 +2,6 @@ package com.kcim.web;
|
|
|
|
|
|
|
|
import com.kcim.common.constants.NumberConstant;
|
|
import com.kcim.common.constants.NumberConstant;
|
|
|
import com.kcim.common.util.Result;
|
|
import com.kcim.common.util.Result;
|
|
|
-import com.kcim.dao.repository.ImportPatientInfoRepository;
|
|
|
|
|
import com.kcim.service.*;
|
|
import com.kcim.service.*;
|
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
@@ -127,8 +126,10 @@ public class CostDataController {
|
|
|
|
|
|
|
|
@ApiOperation("月度数据采集-患者收费项目-患者信息")
|
|
@ApiOperation("月度数据采集-患者收费项目-患者信息")
|
|
|
@GetMapping("getPatientItemPatientInfo")
|
|
@GetMapping("getPatientItemPatientInfo")
|
|
|
- public Result getPatientItemPatientInfo( @RequestParam String computeDate,
|
|
|
|
|
- @RequestParam(required = false) String filter) {
|
|
|
|
|
- return Result.ok(patientItemImportService.getPatientItemPatientInfo(filter,computeDate));
|
|
|
|
|
|
|
+ public Result getPatientItemPatientInfo( @RequestParam(defaultValue = "1", name = "current", required = false) Integer current,
|
|
|
|
|
+ @RequestParam(defaultValue = "10", name = "pageSize", required = false) Integer pageSize,
|
|
|
|
|
+ @RequestParam String computeDate,
|
|
|
|
|
+ @RequestParam(required = false) String filter) {
|
|
|
|
|
+ return Result.ok(patientItemImportService.getPatientItemPatientInfo(current,pageSize,filter,computeDate));
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|