xiaoyong931011
2021-11-26 985b96889f292288405f0fc5241b78abbe9c67d1
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
package com.xcong.excoin.modules.fish.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.entity.BaseEntity;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 兑换比例设置
 */
@Data
@TableName("cannon_account_money_change")
public class CannonAccountMoneyChange extends BaseEntity {
 
    private Long member_id;
    //金额
    private BigDecimal amount;
    //变更金额
    private BigDecimal change_balance;
    //变更前
    private BigDecimal change_before;
    //变更后
    private BigDecimal change_after;
    //1:USDT购买炮台 2:金币兑换1代币 3:1代币兑换金币
    private Integer type;
    //内容
    private String content;
}