JobSeekerInfoVO.java 1.47 KB
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;
}