GetAllVO.java
1.02 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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;
}