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 UserExport implements Serializable {
|
@Excel(name = "用户ID",width = 30 )
|
private String code;
|
@Excel(name = "用户昵称",width = 30)
|
private String userName;
|
@Excel(name = "用户姓名",width = 30)
|
private String realname;
|
@Excel(name = "用户手机号",width = 30)
|
private String cellphone;
|
@Excel(name = "性别",width = 30,replace = {"男_1","女_2"})
|
private String gender;
|
@Excel(name = "出生日期",width = 30 )
|
private String birthday;
|
@Excel(name = "学历",width = 30)
|
private String education;
|
@Excel(name = "所在地",width = 30)
|
private String location;
|
@Excel(name = "故乡",width = 30)
|
private String hometown;
|
@Excel(name = "邮箱",width = 30)
|
private String email;
|
@Excel(name = "行业",width = 30 )
|
private String industry;
|
@Excel(name = "公司",width = 30)
|
private String company;
|
@Excel(name = "职位",width = 30)
|
private String occupation;
|
@Excel(name = "是否会员",width = 30,replace = {"是_1","否_2"})
|
private String isVip;
|
@Excel(name = "疗愈等级",width = 30)
|
private String meditationLevel;
|
@Excel(name = "能量值",width = 30 )
|
private String totalEnergyValue;
|
@Excel(name = "钱包余额",width = 30)
|
private String balance;
|
@Excel(name = "注册时间",width = 30)
|
private String registerTime;
|
@Excel(name = "用户状态",width = 30,replace = {"正常_1","冻结_2","注销_3"})
|
private String userStatus;
|
@Excel(name = "您是否内心纠结敏感多以?",width = 60 ,replace = {"是_1","否_2","偶尔有_3"})
|
private String type1;
|
@Excel(name = "您是否辗转反侧彻夜难眠?",width = 60,replace = {"是_1","否_2","偶尔有_3"})
|
private String type2;
|
@Excel(name = "您是否情绪失控暴躁易怒?",width = 60,replace = {"是_1","否_2","偶尔有_3"})
|
private String type3;
|
@Excel(name = "您是否沉迷情感倍受伤害?",width = 60,replace = {"是_1","否_2","偶尔有_3"})
|
private String type4;
|
@Excel(name = "您是否人生迷茫踌躇彷徨?",width = 60,replace = {"是_1","否_2","偶尔有_3"})
|
private String type5;
|
@Excel(name = "其他补充",width = 30)
|
private String type6;
|
@Excel(name = "您在这方空间最想解决和收获的是哪方面问题?",width = 30 )
|
private String type7;
|
@Excel(name = "是否可浏览梵文",width = 30,replace = {"是_1","否_2"})
|
private String sanskritFlag;
|
@Excel(name = "下级用户数量",width = 30)
|
private String userCount;
|
|
|
|
}
|