GetAllVO.java 1.02 KB
package com.subsidy.vo.member;

import com.subsidy.model.DepartmentDictDO;
import com.subsidy.model.JobDictDO;
import com.subsidy.util.excel.ExcelColumn;
import lombok.Data;

import java.util.List;

@Data
public class GetAllVO {

    private Long id;

    @ExcelColumn(value = "账号", col = 5)
    private String accountName;

    @ExcelColumn(value = "英文名", col = 2)
    private String accountNameEn;

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

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

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

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

    @ExcelColumn(value = "账号状态", col = 3)
    private String status;

    private String email;

    private String workNo;

    //@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    private String inductionDate;

    private List<DepartmentDictDO> departmentDictDOS;

    private List<JobDictDO> jobDictDOS;

}