package com.panzhihua.common.model.vos.community.volunteer; import com.alibaba.excel.annotation.ExcelProperty; import lombok.Data; import java.io.Serializable; /** * @description: 批量导入志愿者请求参数 * @author : lyq */ @Data public class ComMngVolunteerErrorExcelVO implements Serializable { @ExcelProperty(value = "志愿者名称", index = 0) private String name; @ExcelProperty(value = "志愿者手机号", index = 1) private String phone; @ExcelProperty(value = "志愿者身份证", index = 2) private String idCard; @ExcelProperty(value = "志愿者组织", index = 3) private String orgName; @ExcelProperty(value = "志愿者队伍", index = 4) private String teamName; @ExcelProperty(value = "技能", index = 5) private String skillName; @ExcelProperty(value = "是否是大学生", index = 6) private Integer isUniversity; @ExcelProperty(value = "错误信息", index = 7) private String error; }