JobSeekerInfoVO.java
1.47 KB
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
package com.subsidy.vo.simulation;
import com.subsidy.model.MoniCompanyDO;
import com.subsidy.util.excel.ExcelColumn;
import lombok.Data;
import java.util.List;
@Data
public class JobSeekerInfoVO {
@ExcelColumn(col = 1,value = "专业名称")
private String major;
@ExcelColumn(col = 2,value = "毕业院校")
private String college;
@ExcelColumn(col = 3,value = "毕业年份")
private String graduateDate;
@ExcelColumn(col = 4,value = "工作经历1")
private String jobDuration1;
@ExcelColumn(col = 5,value = "工作经历2")
private String jobDuration2;
@ExcelColumn(col = 6,value = "工作经历3")
private String jobDuration3;
@ExcelColumn(col = 7,value = "工作经历4")
private String jobDuration4;
@ExcelColumn(col = 8,value = "工作经历5")
private String jobDuration5;
@ExcelColumn(col = 9,value = "工作经历6")
private String jobDuration6;
@ExcelColumn(col = 10,value = "工作经历7")
private String jobDuration7;
@ExcelColumn(col = 11,value = "工作经历8")
private String jobDuration8;
@ExcelColumn(col = 12,value = "工作经历9")
private String jobDuration9;
@ExcelColumn(col = 13,value = "工作经历10")
private String jobDuration10;
@ExcelColumn(col = 14,value = "工作经历11")
private String jobDuration11;
@ExcelColumn(col = 15,value = "工作经历12")
private String jobDuration12;
private List<MoniCompanyDO> companyTmp;
}