| | |
| | | package com.xcong.excoin.modules.member.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.xcong.excoin.common.system.base.BaseEntity; |
| | | import com.xcong.excoin.modules.yunding.entity.YdBasicLevelSettingEntity; |
| | | import com.xcong.excoin.modules.yunding.entity.YdBasicSettingEntity; |
| | | import lombok.Data; |
| | | import java.math.BigDecimal; |
| | | |
| | |
| | | /** |
| | | * 账号状态 0-禁用 1-启用 |
| | | */ |
| | | private int accountStatus; |
| | | private Integer accountStatus; |
| | | |
| | | /** |
| | | * 上级推荐人id |
| | |
| | | * 合约仓位类型 |
| | | */ |
| | | private Integer contractPositionType; |
| | | |
| | | /** |
| | | * 指纹解锁功能 1:是 0:否 |
| | | */ |
| | | private Integer fingerprintState; |
| | | |
| | | /** |
| | | * 是否可平仓 1:否 0:是 |
| | | */ |
| | | private Integer pcState; |
| | | |
| | | public static final Integer PCSTATE_Y = 0; |
| | | |
| | | public static final Integer PCSTATE_N = 1; |
| | | |
| | | @TableField(exist = false) |
| | | private YdBasicLevelSettingEntity ydBasicLevelSettingEntity; |
| | | |
| | | } |