| | |
| | | package cc.mrbird.febs.dapp.entity; |
| | | |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author wzy |
| | | * @author |
| | | * @date 2022-03-21 |
| | | **/ |
| | | @Data |
| | | @TableName("dapp_account_money_change") |
| | | public class DappAccountMoneyChangeEntity extends BaseEntity { |
| | | |
| | | public DappAccountMoneyChangeEntity() { |
| | | } |
| | | |
| | | public DappAccountMoneyChangeEntity(Long memberId, BigDecimal preAmount, BigDecimal amount, BigDecimal afterAmount, String content, Integer type) { |
| | | this.memberId = memberId; |
| | |
| | | * 类型 1-兑换 2-提现 3-采矿 |
| | | */ |
| | | private Integer type; |
| | | |
| | | @TableField(exist = false) |
| | | private String address; |
| | | } |