无关风月
2025-03-07 1d44c20eabc99e9970fb58d4dbd3a94d77e83e39
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;
 
 
 
 
}