Commit 99589ea6 authored by huyuchen's avatar huyuchen

优化修改

parent b5a1390b
...@@ -218,9 +218,9 @@ public class TSalaryEmployeeController { ...@@ -218,9 +218,9 @@ public class TSalaryEmployeeController {
@Operation(summary = "获取员工花名册信息信息", description = "获取员工花名册信息信息") @Operation(summary = "获取员工花名册信息信息", description = "获取员工花名册信息信息")
@Inner @Inner
@PostMapping("/getSalaryEmpRoster") @PostMapping("/getSalaryEmpRoster")
public R<SalaryEmpRosterRes> getSalaryEmpRoster(@RequestBody List<String> idCardList) { public SalaryEmpRosterRes getSalaryEmpRoster(@RequestBody List<String> idCardList) {
SalaryEmpRosterRes res = new SalaryEmpRosterRes(); SalaryEmpRosterRes res = new SalaryEmpRosterRes();
res.setRosterVos(tSalaryEmployeeService.getSalaryEmpRoster(idCardList)); res.setRosterVos(tSalaryEmployeeService.getSalaryEmpRoster(idCardList));
return new R<>(res); return res;
} }
} }
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