liyong
2026-07-10 670fdc10eff2fa4b05cc64ac6c26893bd523a8e9
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package cn.iocoder.yudao.module.mes.dal.dataobject.cal.team;
 
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
import cn.iocoder.yudao.module.mes.dal.dataobject.cal.plan.MesCalPlanDO;
import cn.iocoder.yudao.module.mes.dal.dataobject.cal.plan.MesCalPlanShiftDO;
import com.baomidou.mybatisplus.annotation.KeySequence;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
 
import java.time.LocalDateTime;
 
/**
 * MES 班组排班 DO
 *
 * @author 芋道源码
 */
@TableName("mes_cal_team_shift")
@KeySequence("mes_cal_team_shift_seq")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class MesCalTeamShiftDO extends BaseDO {
 
    /**
     * 编号
     */
    @TableId
    private Long id;
    /**
     * 排班计划编号
     *
     * 关联 {@link MesCalPlanDO#getId()}
     */
    private Long planId;
    /**
     * 班组编号
     *
     * 关联 {@link MesCalTeamDO#getId()}
     */
    private Long teamId;
    /**
     * 班次编号
     *
     * 关联 {@link MesCalPlanShiftDO#getId()}
     */
    private Long shiftId;
    /**
     * 日期
     */
    private LocalDateTime day;
    /**
     * 排序
     */
    private Integer sort;
    /**
     * 备注
     */
    private String remark;
 
}