9 天以前 8c14b50773a1e582b652c03f5a63bb2233d069b8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package cn.iocoder.yudao.module.mes.controller.admin.cal.team.vo.shift;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - MES 班组排班 Response VO")
@Data
public class MesCalTeamShiftRespVO {
 
    @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    private Long id;
 
    @Schema(description = "排班计划编号", example = "1")
    private Long planId;
 
    @Schema(description = "班组编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "201")
    private Long teamId;
 
    @Schema(description = "班组名称", example = "注塑A组")
    private String teamName;
 
    @Schema(description = "班次编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long shiftId;
 
    @Schema(description = "班次名称", example = "白班")
    private String shiftName;
 
    @Schema(description = "日期", requiredMode = Schema.RequiredMode.REQUIRED)
    private LocalDateTime day;
 
    @Schema(description = "排序", example = "1")
    private Integer sort;
 
    @Schema(description = "备注")
    private String remark;
 
    @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
    private LocalDateTime createTime;
 
}