| | |
| | | package com.xcong.excoin.modules.trademanage.vo;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import com.baomidou.mybatisplus.annotation.IdType;
|
| | | import com.baomidou.mybatisplus.annotation.TableId;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.TableField;
|
| | | import com.xcong.excoin.common.entity.BaseEntity;
|
| | |
|
| | | import lombok.Data;
|
| | |
|
| | | @Data
|
| | | public class MemberAccountInfoVo {
|
| | | public class MemberAccountInfoVo extends BaseEntity {
|
| | |
|
| | | @TableId(value = "id",type = IdType.AUTO)
|
| | | private Long id;
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | | /**
|
| | | * 手机号(包含国际手机号)
|
| | | */
|
| | |
| | | * 是否是代理
|
| | | */
|
| | | private int isSuAccount;
|
| | | private int accountType;
|
| | | /**
|
| | | * 代理可用金额
|
| | | */
|
| | | private BigDecimal agentAvailableBalance;
|
| | | |
| | | /**
|
| | | * 姓名
|
| | | */
|
| | | private String realName; |
| | | /**
|
| | | * 查询条件:账号类型
|
| | | */
|
| | | private String isTest;
|
| | |
|
| | | }
|