AnalysisExcelVO.java
1.24 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
package com.subsidy.vo.simulation;
import com.subsidy.util.excel.ExcelColumn;
import com.subsidy.util.excel.ExcelColumnUtil;
import lombok.Data;
@Data
public class AnalysisExcelVO {
@ExcelColumn(value = "id", col = 1)
private String id;
@ExcelColumn(value = "company_name", col = 2)
private String companyName;
@ExcelColumn(value = "company_job", col = 3)
private String schoolName;
@ExcelColumn(value = "job_major", col = 4)
private String idCard;
@ExcelColumn(value = "company_desc", col = 5)
private String companyDesc;
@ExcelColumn(value = "requirement", col = 6)
private String requirement;
@ExcelColumn(value = "content", col = 7)
private String content;
@ExcelColumn(value = "wearFare", col = 8)
private String wearFare;
@ExcelColumn(value = "company_industry", col = 9)
private String companyIndustry;
@ExcelColumn(value = "salary", col = 10)
private String salary;
@ExcelColumn(value = "demands", col = 11)
private String demands;
@ExcelColumn(value = "numbers", col = 12)
private String numbers;
@ExcelColumn(value = "location", col = 13)
private String location;
@ExcelColumn(value = "years", col = 14)
private String years;
}