package com.xcong.excoin.modules.member.entity;
|
|
import java.math.BigDecimal;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.xcong.excoin.common.entity.BaseEntity;
|
|
import lombok.Data;
|
|
/**
|
* 会员提币表
|
*
|
* @author wzy
|
* @date 2020-05-12
|
**/
|
@Data
|
@TableName("member_coin_withdraw")
|
public class MemberCoinWithdrawEntity extends BaseEntity{
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
/**
|
* 会员ID
|
*/
|
private Long memberId;
|
/**
|
* 地址
|
*/
|
private String address;
|
/**
|
* 提币数量
|
*/
|
private BigDecimal amount;
|
/**
|
* 手续费
|
*/
|
private BigDecimal feeAmount;
|
/**
|
* 币种
|
*/
|
private String symbol;
|
/**
|
* 状态
|
*/
|
private int status;
|
//等待审核
|
public static final int IS_STATUS_ING = 1;
|
//同意
|
public static final int IS_STATUS_Y = 2;
|
//拒绝
|
public static final int IS_STATUS_N = 3;
|
private String label;
|
private String tag;
|
|
/**
|
* 是否内部转账 Y-是N-不是
|
*/
|
private String isInside;
|
|
/**
|
* 查询条件:第一查询条件
|
*/
|
@TableField(exist = false)
|
private String account;
|
/**
|
* 查询条件:是否为测试账号
|
*/
|
@TableField(exist = false)
|
private String isTest;
|
@TableField(exist = false)
|
private String inviteId;
|
|
|
}
|