Helius
2020-05-27 2dd3a086f2edeb9f364935c3fb98f18c2eea2fa8
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
53
54
55
56
57
58
59
60
package com.xcong.excoin.modules.coin.entity;
 
import java.math.BigDecimal;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.system.base.BaseEntity;
 
import lombok.Data;
/**
 * 会员账户流水情况
 */
@Data
@TableName("member_account_flow")
public class MemberAccountFlowEntity extends BaseEntity {
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    
    /**
     * 会员ID
     */
    private Long memberId;
    
    /**
     * 价格
     */
    private BigDecimal price;
    
    /**
     * 用户余额
     */
    private BigDecimal balance;
    
    /**
     * 来源
     */
    private String source;
 
    public static final String SOURCE_BUY = "币币买入";
    public static final String SOURCE_SALE = "币币卖出";
    public static final String SOURCE_CANCEL = "撤销币币委托单";
    
    /**
     * 币种
     */
    private String symbol;
    
    /**
     * 备注
     */
    private String remark;
    public static final String REMARK_BUY = "买入";
    public static final String REMARK_SALE = "卖出";
    public static final String REMARK_CANCEL = "撤销";
    public static final String REMARK_RETURNBALANCE = "返回金额:";
    
 
}