fix
wzy
2022-10-31 3468c100b9ef9747f5202c412a4ecbd4789d8a5d
src/main/java/cc/mrbird/febs/dapp/entity/DappAccountMoneyChangeEntity.java
@@ -48,6 +48,18 @@
        this.setVersion(1);
    }
    public DappAccountMoneyChangeEntity(BigDecimal amount, String content, Integer type) {
        this.amount = amount;
        this.content = content;
        this.type = type;
        this.setCreateBy("system");
        this.setUpdateBy("system");
        this.setCreateTime(new Date());
        this.setUpdateTime(new Date());
        this.setVersion(1);
    }
    private Long memberId;
    private BigDecimal preAmount;
@@ -75,4 +87,10 @@
    @TableField(exist = false)
    private String endTime;
    /**
     * 后台操作用户的标识
     */
    @TableField(exist = false)
    private String description;
}