AnalysisExcelDTO.java 1.17 KB
package com.subsidy.vo.simulation;

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

@Data
public class AnalysisExcelDTO {

    @ExcelColumnUtil(value = "id", col = 1)
    private String id;

    @ExcelColumnUtil(value = "company_name", col = 2)
    private String companyName;

    @ExcelColumnUtil(value = "company_job", col = 3)
    private String schoolName;

    @ExcelColumnUtil(value = "job_major", col = 4)
    private String idCard;

    @ExcelColumnUtil(value = "company_desc", col = 5)
    private String companyDesc;

    @ExcelColumnUtil(value = "requirement", col = 6)
    private String requirement;

    @ExcelColumnUtil(value = "content", col = 7)
    private String content;

    @ExcelColumnUtil(value = "company_industry", col = 8)
    private String companyIndustry;

    @ExcelColumnUtil(value = "salary", col = 9)
    private String salary;

    @ExcelColumnUtil(value = "demands", col = 10)
    private String demands;

    @ExcelColumnUtil(value = "numbers", col = 11)
    private String numbers;

    @ExcelColumnUtil(value = "location", col = 12)
    private String location;

    @ExcelColumnUtil(value = "years", col = 13)
    private String years;

}