QueryStudentsVO.java
909 Bytes
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
package com.meishu.vo.userrole;
import com.meishu.util.excel.ExcelColumn;
import lombok.Data;
@Data
public class QueryStudentsVO {
private Integer id;
@ExcelColumn(col = 1,value = "姓名")
private String userName;
@ExcelColumn(col = 2,value = "学号")
private String studyCode;
@ExcelColumn(col = 3,value = "手机号")
private String phone;
@ExcelColumn(col = 4,value = "身份证号")
private String idCard;
@ExcelColumn(col = 5,value = "年级")
private String grade;
@ExcelColumn(col = 6,value = "入学年份")
private String session;
@ExcelColumn(col = 7,value = "性别")
private String gender;
@ExcelColumn(col = 8,value = "邮箱")
private String email;
@ExcelColumn(col = 9,value = "所在行政班级")
private String className;
@ExcelColumn(col = 10,value = "状态")
private String userStatus;
}