|
@@ -36,9 +36,9 @@ public class CostIncomeFileController {
|
|
|
@ApiOperation("分页查询记录数据")
|
|
|
public Result list(@RequestParam(value = "current", defaultValue = "1") Integer current,
|
|
|
@RequestParam(value = "pageSize", defaultValue = "10") Integer pageSize,
|
|
|
- @RequestParam(value = "name",required = false) String name){
|
|
|
+ @RequestParam(value = "fileName",required = false) String fileName){
|
|
|
Long hospId = UserContext.getHospId();
|
|
|
- PageUtils pageUtils = costIncomeFileService.queryList(current,pageSize,name,hospId);
|
|
|
+ PageUtils pageUtils = costIncomeFileService.queryList(current,pageSize,fileName,hospId);
|
|
|
return Result.ok(pageUtils);
|
|
|
}
|
|
|
|