xiaoyong931011
2020-06-16 1636c6e9db920bb385725314935363d537b30633
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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;
 
}