xiaoyong931011
2021-03-18 e5e02b9d141e54ae1f34a276d85ae2a98ba5c584
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
package com.xcong.excoin.modules.activity.entity;
 
import java.math.BigDecimal;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.system.base.BaseEntity;
 
import lombok.Data;
 
/**
 * @description 活动个人详情表
 * @author yourName
 * @date 2021-03-18 17:53
 */
@Data
@TableName("activity_member_detail")
public class ActivityMemberDetail  extends BaseEntity{
    private static final long serialVersionUID = 1L; 
 
    
 
 
    
    /**
     * 活动主表ID
     */
 
 
    private Long  mainId;
    
    /**
     * 累计爆仓额度
     */
 
 
    private BigDecimal  burstUsdt;
    
    /**
     * 已领取USDT
     */
 
 
    private BigDecimal  receivedUsdt;
    
    /**
     * 剩余待领取
     */
 
 
    private BigDecimal  surplusUsdt;
    
    /**
     * 会员ID
     */
 
 
    private Long  memberId;
 
 
 
  
}