Blame view

SimulationJobVO.java 985 Bytes
涂亚平 committed
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
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;
}