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;
|
|
|
|
|
}
|