xiaoyong931011
2020-07-12 3fc30764b297282e9bcf8af0c76cb55200cfceb9
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
61
62
63
64
65
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_charge")
public class MemberCoinChargeEntity extends BaseEntity{
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    /**
     * 会员ID
     */
    private Long memberId;
    /**
     * 凭证
     */
    private Long certificate;
    /**
     * 充值金额
     */
    private BigDecimal amount;
    /**
     * 上次更新时钱包金额
     */
    private BigDecimal lastAmount;
    /**
     * 状态
     */
    private int status;
    /**
     * 币种
     */
    private String symbol;
    /**
     * 地址
     */
    private String address;
    private String tag;
    private String hash;
    /**
     * 订单编号
     */
    private String orderCode;
    
    /**
     * 查询条件:第一查询条件
     */
    @TableField(exist = false)
    private String account;
 
}