package com.xcong.excoin.modules.member.entity;
|
|
import java.math.BigDecimal;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.xcong.excoin.common.entity.BaseEntity;
|
|
import lombok.Data;
|
|
@Data
|
@TableName("member_account_money_change")
|
public class MemberAccountMoneyChangeEntity extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 类型【1:币币资产2:合约资产3:代理资产】
|
*/
|
public static final Integer TYPE_WALLET_COIN = 1;
|
public static final Integer TYPE_WALLET_CONTRACT = 2;
|
public static final Integer TYPE_WALLET_AGENT = 3;
|
/**
|
* 状态【0:待审核 1:成功2:失败】
|
*/
|
public static final Integer STATUS_WAIT_INTEGER = 0;
|
public static final Integer STATUS_SUCCESS_INTEGER = 1;
|
public static final Integer STATUS_FAIL_INTEGER = 2;
|
|
private Long memberId;
|
|
/**
|
* 币种
|
*/
|
private String symbol;
|
|
/**
|
* 金额
|
*/
|
private BigDecimal amount;
|
/**
|
* 记录内容
|
*/
|
private String content;
|
/**
|
* 类型【1:币币资产2:合约资产3:代理资产】
|
*/
|
private int type;
|
/**
|
* 状态【0:待审核 1:成功2:失败】
|
*/
|
private int status;
|
|
}
|