package cn.iocoder.yudao.module.hrm.controller.admin.attendance; import cn.iocoder.yudao.framework.common.pojo.CommonResult; import cn.iocoder.yudao.module.hrm.controller.admin.attendance.vo.HrmEmployeeScheduleListReqVO; import cn.iocoder.yudao.module.hrm.controller.admin.attendance.vo.HrmEmployeeScheduleRespVO; import cn.iocoder.yudao.module.hrm.controller.admin.attendance.vo.HrmEmployeeScheduleSaveReqVO; import cn.iocoder.yudao.module.hrm.service.attendance.HrmEmployeeScheduleService; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.tags.Tag; import jakarta.annotation.Resource; import jakarta.validation.Valid; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; import java.util.List; import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success; @Tag(name = "管理后台 - HRM 员工排班") @RestController @RequestMapping("/hrm/employee-schedule") @Validated public class HrmEmployeeScheduleController { @Resource private HrmEmployeeScheduleService employeeScheduleService; @GetMapping("/list") @Operation(summary = "获得某月员工排班列表") @PreAuthorize("@ss.hasPermission('hrm:employee-schedule:query')") public CommonResult> getEmployeeScheduleList( @Valid HrmEmployeeScheduleListReqVO reqVO) { return success(employeeScheduleService.getScheduleList(reqVO)); } @PostMapping("/save") @Operation(summary = "批量保存员工排班(整月覆盖式)") @PreAuthorize("@ss.hasPermission('hrm:employee-schedule:save')") public CommonResult saveEmployeeSchedule( @Valid @RequestBody List<@Valid HrmEmployeeScheduleSaveReqVO> saveReqVOList) { employeeScheduleService.saveSchedule(saveReqVOList); return success(true); } }