Helius
2021-11-24 be6f79a634727b59c6a40e3fffa989b5de1b0ec7
src/main/java/com/xcong/excoin/modules/fish/entity/CannonAccountMoneyChange.java
New file
@@ -0,0 +1,30 @@
package com.xcong.excoin.modules.fish.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.system.base.BaseEntity;
import lombok.Data;
import java.math.BigDecimal;
/**
 * 用户的账户资金转换充值提现操作记录表
 */
@Data
@TableName("cannon_account_money_change")
public class CannonAccountMoneyChange extends BaseEntity {
    private Long memberId;
    //金额
    private BigDecimal amount;
    //1:USDT购买炮台 2:金币兑换1代币 3:1代币兑换金币
    private Integer type;
    //内容
    private String content;
    //变更金额
    private BigDecimal changeBalance;
    //变更前
    private BigDecimal changeBefore;
    //变更后
    private BigDecimal changeAfter;
}