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
package io.hmit.modules.serviceOrder.excel;
import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;
import java.util.Date;
/**
* 用户
*
* @author zsh 408538940@qq.com
* @since 1.0.0 2021-01-27
*/
@Data
public class UserExcel {
@Excel(name = "id")
private Long id;
@Excel(name = "关联sys_user中的id")
private Long userId;
@Excel(name = "用户名")
private String username;
@Excel(name = "手机号")
private String mobile;
@Excel(name = "密码")
private String password;
@Excel(name = "创建时间")
private Date createDate;
@Excel(name = "微信openid")
private String openid;
@Excel(name = "生日")
private Date birthday;
@Excel(name = "地址_地区")
private String addressArea;
@Excel(name = "详细地址")
private String address;
}