|
|
@@ -113,8 +113,8 @@ public class TechnicianController extends KdController {
|
|
|
|
|
|
@GetMapping("/fetchLastMonthData")
|
|
|
@ApiOperationSupport(order = 10)
|
|
|
- @Operation(summary = "读取上个月人员名单")
|
|
|
- public R fetchLastMonthData(TechnicianDTO technician) {
|
|
|
+ @Operation(summary = "读取上个月人员名单", description = "传入选中的年月,比如2025-06,则读取2025-05的数据到06月")
|
|
|
+ public R<Boolean> fetchLastMonthData(TechnicianDTO technician) {
|
|
|
return R.status(technicianService.fetchLastMonthData(technician));
|
|
|
}
|
|
|
|