2 天以前 3be684af887afe4c0e45f281cc53adfef6f12b78
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
package cn.iocoder.yudao.module.mes.dal.dataobject.cal.team;
 
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
import com.baomidou.mybatisplus.annotation.KeySequence;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
 
/**
 * MES 班组 DO
 *
 * @author 芋道源码
 */
@TableName("mes_cal_team")
@KeySequence("mes_cal_team_seq")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class MesCalTeamDO extends BaseDO {
 
    /**
     * 班组编号
     */
    @TableId
    private Long id;
    /**
     * 班组编码
     */
    private String code;
    /**
     * 班组名称
     */
    private String name;
    /**
     * 班组类型
     */
    private Integer calendarType;
    /**
     * 备注
     */
    private String remark;
 
}