cuijian
2023-10-30 059c6a5058295cd93741cf04c0a52a4a53e2c284
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
package org.jeecg.modules.eam.vo;
 
import lombok.Data;
import lombok.experimental.Accessors;
import org.jeecgframework.poi.excel.annotation.Excel;
 
import java.math.BigDecimal;
import java.util.Date;
 
 
@Data
@Accessors(chain = true)
public class OperationCertificateImportVo {
 
    @Excel(name= "姓名")
    private String name;
 
    @Excel(name="性别")
    private String sex;
 
    @Excel(name = "工种")
    private String profession;
 
    @Excel(name = "技能等级")
    private String technicalLevel;
 
    @Excel(name = "工作证号")
    private String workNo;
 
    @Excel(name = "上岗证号")
    private String appointmentCardNum;
 
    @Excel(name = "统一编号")
    private String equipmentNum;
 
    @Excel(name = "设备名称")
    private String equipmentName;
 
    @Excel(name = "设备型号")
    private String equipmentModel;
 
    @Excel(name = "发证日期")
    private Date issueDate;
 
    @Excel(name = "备注")
    private String remark;
 
}