chenrui
2025-03-17 7f878b1b0caa64cc818bec6d3e89f544b9a2b11b
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
package com.yuanchu.mom.pojo;
 
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 工作履历
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2024-09-02 03:13:03
 */
@Getter
@Setter
@TableName("cnas_person_track_record")
@ApiModel(value = "PersonTrackRecord对象", description = "工作履历")
@ExcelIgnoreUnannotated
public class PersonTrackRecord implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ExcelIgnore
    @ApiModelProperty("主键id")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ColumnWidth(value = 18)
    @ExcelProperty(value = "起始时间")
    @ApiModelProperty("起始时间")
    private LocalDateTime startTime;
 
    @ExcelProperty(value = "结束时间")
    @ColumnWidth(value = 18)
    @ApiModelProperty("结束时间")
    private LocalDateTime endTime;
 
    @ExcelProperty(value = "工作单位")
    @ApiModelProperty("工作单位")
    private String placeWork;
 
    @ExcelProperty(value = "部门")
    @ApiModelProperty("部门")
    private String department;
 
    @ExcelProperty(value = "职务")
    @ApiModelProperty("职务")
    private String post;
 
    @ExcelProperty(value = "备注")
    @ApiModelProperty("备注")
    private String remarks;
 
    @ColumnWidth(value = 18)
    @ExcelProperty(value = "创建时间")
    @ApiModelProperty("创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    @ApiModelProperty("创建人")
    @TableField(fill = FieldFill.INSERT)
    private String createUser;
 
    @ApiModelProperty("用户表(user)id")
    private Integer userId;
 
    private String fileName;
 
    @TableField(exist = false,select = false)
    @ExcelProperty(value = "用户名称")
    @ApiModelProperty("用户名称")
    private String name;
}