package com.gear.swx.domain;
|
|
import java.math.BigDecimal;
|
import com.gear.common.annotation.Excel;
|
import com.gear.common.annotation.Where;
|
import com.gear.common.enums.Condition;
|
import lombok.Data;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.gear.common.core.domain.BusiBaseEntity;
|
|
/**
|
* 用户管理对象 swx_user
|
*
|
* @author czx
|
* @date 2023-11-18
|
*/
|
@Data
|
@TableName("swx_user")
|
public class SwxUser extends BusiBaseEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/** 邮箱 */
|
@Excel(name = "邮箱")
|
private String email;
|
|
/** 密码 */
|
@Excel(name = "密码")
|
private String password;
|
|
/** 第三方_谷歌 */
|
@Excel(name = "第三方_谷歌")
|
private String gmailKey;
|
|
/** 第三方账号_facbook */
|
@Excel(name = "第三方账号_facbook")
|
private String facebookKey;
|
|
/** 用户账号 */
|
@Excel(name = "用户账号")
|
@Where(value = Condition.like,column = "userName")
|
private String userName;
|
|
/** 邀请码 */
|
@Excel(name = "邀请码")
|
private Integer inviteNumber;
|
|
private String invetedUser;
|
/** 余额 */
|
@Excel(name = "余额")
|
private BigDecimal amount;
|
|
/** 贷款金额 */
|
@Excel(name = "贷款金额")
|
private BigDecimal loanAmount;
|
|
/** 保证金占用 */
|
@Excel(name = "保证金占用")
|
private BigDecimal bondAmount;
|
|
/** 可提现金额 */
|
@Excel(name = "可提现金额")
|
private BigDecimal withdrawalAmount;
|
|
/** 利润 */
|
@Excel(name = "利润")
|
private BigDecimal profit;
|
|
/** 验证状态 */
|
@Excel(name = "验证状态")
|
private Integer idefinderStatus;
|
|
/** 手机号 */
|
@Excel(name = "手机号")
|
@Where(value = Condition.like,column = "phone")
|
private String phone;
|
|
/** 国家 */
|
@Excel(name = "国家")
|
private String country;
|
|
/** 地址 */
|
@Excel(name = "地址")
|
private String address;
|
|
/** 性别 */
|
@Excel(name = "性别")
|
private Integer sex;
|
|
/** 是否模拟账户 */
|
@Excel(name = "是否模拟账户")
|
private Integer virtuallyStatus;
|
@Where(value = Condition.eq,column = "status")
|
private Integer status;
|
|
private BigDecimal allRecharge;
|
|
private BigDecimal allWithdrawal;
|
|
private String level;
|
|
private Integer bw;
|
|
/** 是否业务员(0否1是) */
|
private Integer salesman;
|
}
|