heheng
2 天以前 3cc8d1cc3662d88fe7f3666fb1f99e1b19411424
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
package com.gkhy.exam.system.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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
 
@Data
@TableName("internal_audit_person")
@ApiModel(value = "InternalAuditPerson对象", description = "内审人员")
public class InternalAuditPerson implements Serializable {
 
    @ApiModelProperty("主键")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "企业id",required = true)
    @TableField("company_id")
    private Integer companyId;
    @TableField(exist = false)
    private String companyName;
 
    @ApiModelProperty(value = "人员id")
    @TableField("person_id")
    private Integer personId;
    @ApiModelProperty(value = "人员名称")
    @TableField(exist = false)
    private String personName;
 
    @ApiModelProperty(value = "专长领域")
    @TableField("speciality")
    private String speciality;
 
    @ApiModelProperty(value = "部门id")
    @TableField(exist = false)
    private Integer deptId;
    @ApiModelProperty(value = "部门名称")
    @TableField(exist = false)
    private String deptName;
    @ApiModelProperty(value = "职务")
    @TableField(exist = false)
    private String duty;
 
    @TableField("del_flag")
    private Integer delFlag;
 
    @TableField("create_by")
    private String createBy;
 
    @TableField("create_time")
    private LocalDateTime createTime;
 
    @TableField("update_by")
    private String updateBy;
 
    @TableField("update_time")
    private LocalDateTime updateTime;
}