Lius
2025-07-04 77a1469028cfb204fb9fd2a29acbb8ccadf2ee7a
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package org.jeecg.modules.system.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecg.common.system.base.entity.JeecgEntity;
import org.jeecgframework.poi.excel.annotation.Excel;
 
/**
 * @Description: 维修部门班组
 * @Author: liuS
 * @Date: 2023-03-23
 * @Version: V1.0
 */
@Data
@TableName("eam_base_repair_depart")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "eam_base_repair_depart对象", description = "维修部门班组")
public class EamBaseRepairDepart extends JeecgEntity {
 
    private static final long serialVersionUID = 4128209535052886060L;
 
    /**
     * 父维修部门班组ID
     */
    @ApiModelProperty(value = "父维修部门班组ID")
    private String parentId;
    /**
     * 维修部门班组名称
     */
    @Excel(name = "维修部门班组名称", width = 20)
    @ApiModelProperty(value = "维修部门班组名称")
    private String departName;
    /**
     * 缩写
     */
    @ApiModelProperty(value = "缩写")
    private String departNameAbbr;
    /**
     * 排序
     */
    @Excel(name = "排序", width = 15)
    @ApiModelProperty(value = "排序")
    private Integer departOrder;
    /**
     * 描述
     */
    @Excel(name = "描述", width = 15)
    @ApiModelProperty(value = "描述")
    private String description;
    /**
     * 维修部门班组类型 1一级部门 2子部门
     */
    @ApiModelProperty(value = "维修部门班组类型 1一级部门 2子部门")
    private String orgType;
    /**
     * 维修部门班组编码
     */
    @ApiModelProperty(value = "维修部门班组编码")
    private String orgCode;
    /**
     * 维修部门班组编码
     */
    @ApiModelProperty(value = "车间编码")
    private String departCode;
    /**
     * 地址
     */
    @Excel(name = "地址", width = 15)
    @ApiModelProperty(value = "地址")
    private String address;
    /**
     * 备注
     */
    @Excel(name = "备注", width = 20)
    @ApiModelProperty(value = "备注")
    private String memo;
    /**
     * 状态(1启用,0不启用)
     */
    @ApiModelProperty(value = "状态(1启用,0不启用)")
    private String status;
    /**
     * 删除状态(0,正常,1已删除)
     */
    @Excel(name = "删除状态", width = 15, dicCode = "del_flag")
    @ApiModelProperty(value = "删除状态(0,正常,1已删除)")
    private String delFlag;
 
    /**部门负责人的ids*/
    @TableField(exist = false)
    private String directorUserIds;
}