DepartMembersVO.java 734 Bytes
package com.subsidy.vo.member;

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

@Data
public class DepartMembersVO {

    @ExcelColumn(value = "姓名", col = 1)
    private String userName;

    @ExcelColumn(value = "手机号", col = 2)
    private String telephone;

    @ExcelColumn(value = "身份证号", col = 3)
    private String idCard;

    @ExcelColumn(value = "性别", col = 4)
    private String gender;

    @ExcelColumn(value = "邮件", col = 5)
    private String email;

    @ExcelColumn(value = "QQ号", col = 6)
    private String qqNo;

    @ExcelColumn(value = "微信号", col = 7)
    private String wechat;

    @ExcelColumn(value = "离职时间", col = 8)
    private String createDate;
}