zhangfeng
2023-07-22 ef406c4432c290f2627fa3742a1489e660dcc239
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
package com.gk.hotwork.Domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @email 1603559716@qq.com
 * @author: zf
 * @date: 2023/7/21
 * @time: 9:24
 */
@TableName("inspection_expert")
@Data
public class InspectionExpert implements Serializable {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    //专家用户
    private Long expertId;
 
    //用户类型
    private Integer type;
 
    //名称
    private String name;
 
    //是否是组长 0否,1是
    private Boolean isLeader;
    //检查清单id
    private Long selfInspectionId;
 
    //专家组id
    private Long expertGropId;
 
    //身份证
    private String idcard;
 
    //手机号
    private String phone;
 
    //职称
    private Integer professionalLevel;
 
    //专业方向
    private String specialityName;
 
    //单位名称
    private String companyName;
}