Blame view

DepartMembersVO.java 734 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
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;
}