xiaoyong931011
2022-03-01 ee64a79830f6bad4107301c31f1fed3d8ab190c4
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
package com.xcong.excoin.modules.coin.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.system.base.BaseEntity;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 质押记录表
 */
@Data
@TableName("zhiya_reward")
public class ZhiyaRewardEntity extends BaseEntity {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    /**
     * 会员ID
     */
    private Long memberId;
 
    /**
     * 质押ID
     */
    private Long recordId;
    /**
     * 质押编号
     */
    private String recordNo;
    /**
     * 奖励金额
     */
    private BigDecimal rewardAmout;
    /**
     * 1:返回用户2:返回代理
     */
    private Integer type;
 
}