SimulationJobVO.java 985 Bytes
package com.subsidy.vo.simulation;

import com.subsidy.util.excel.ExcelColumn;
import lombok.Data;

@Data
public class SimulationJobVO {

    @ExcelColumn(col = 1,value = "单位名称")
    private String companyName;

    @ExcelColumn(col = 2,value = "用人单位性质")
    private String companyType;

    @ExcelColumn(col = 3,value = "岗位名称")
    private String jobName;

    @ExcelColumn(col = 4,value = "招聘人数")
    private String applyCnt;

    @ExcelColumn(col = 5,value = "薪资待遇")
    private String salary;

    @ExcelColumn(col = 6,value = "工作职责/岗位职责/职位介绍/职位描述")
    private String jobDesc;

    @ExcelColumn(col = 7,value = "任职资格/要求")
    private String demand;

    @ExcelColumn(col = 8,value = "工作地点")
    private String address;

    @ExcelColumn(col = 9,value = "工作年限")
    private String jobDuration;

    @ExcelColumn(col = 10,value = "学历要求")
    private String education;
}