xiaoyong931011
2022-10-30 63a14a072d097690fa0f063de5f374914ce7ef2e
src/main/java/cc/mrbird/febs/dapp/entity/DappAccountMoneyChangeEntity.java
@@ -35,6 +35,19 @@
        this.setVersion(1);
    }
    public DappAccountMoneyChangeEntity(Long memberId,BigDecimal amount, String content, Integer type) {
        this.memberId = memberId;
        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;
@@ -62,4 +75,10 @@
    @TableField(exist = false)
    private String endTime;
    /**
     * 后台操作用户的标识
     */
    @TableField(exist = false)
    private String description;
}