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
package org.jeecg.modules.system.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 用户产线
 *
 * @author: LiuS
 * @create: 2023-03-24 15:39
 */
@Data
@TableName("eam_base_repair_depart_user")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="eam_base_repair_depart_user对象", description="用户维修班组表")
public class EamBaseRepairDepartUser implements Serializable {
 
    private static final long serialVersionUID = -615660545315767149L;
 
    /**
     * 主键id
     */
    @TableId(type = IdType.ASSIGN_ID)
    private String id;
    /**
     * 用户id
     */
    private String userId;
    /**
     * 维修班组id
     */
    private String departId;
 
    /**
     * 创建人
     */
    private String createBy;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
    public EamBaseRepairDepartUser(String id, String userId, String departId) {
        super();
        this.id = id;
        this.userId = userId;
        this.departId = departId;
    }
 
    public EamBaseRepairDepartUser(String id, String departId) {
        this.userId = id;
        this.departId = departId;
    }
}