package cn.iocoder.yudao.module.hrm.controller.admin.attendance.vo; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.time.LocalDate; @Schema(description = "管理后台 - 员工排班 Response VO") @Data public class HrmEmployeeScheduleRespVO { @Schema(description = "排班ID") private Long id; @Schema(description = "员工ID") private Long employeeId; @Schema(description = "员工姓名") private String employeeName; @Schema(description = "员工工号") private String employeeNo; @Schema(description = "排班日期") private LocalDate date; @Schema(description = "班次ID,为空表示休息") private Long shiftId; @Schema(description = "班次名称") private String shiftName; @Schema(description = "班次颜色") private String shiftColor; @Schema(description = "备注") private String remark; }