无关风月
2024-11-04 64f7ccb9ef8b5a0618e65cddc14b981c1f108ba3
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
package com.xinquan.user.domain.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ApiModel(value = "用户列表-下级用户-导出")
public class UserInfoExport implements Serializable {
    @Excel(name  = "用户ID",width = 30 )
    private String code;
    @Excel(name = "用户昵称",width = 30)
    private String userName;
    @Excel(name = "用户手机号",width = 30)
    private String cellphone;
    @Excel(name = "带来收益",width = 30)
    private String income;
    @Excel(name = "绑定时间",width = 30)
    private String inviteUserTime;
    @Excel(name = "用户状态",width = 30,replace = {"正常_1","冻结_2","注销_3"})
    private String userStatus;
 
 
 
 
}