Helius
2022-03-29 d4a85f010f6b17caed4edf1e56b742c6c4e20b02
src/main/java/cc/mrbird/febs/dapp/entity/DappFundFlowEntity.java
@@ -21,11 +21,12 @@
    public DappFundFlowEntity() {}
    public DappFundFlowEntity(Long memberId, BigDecimal amount, Integer type, Integer status) {
    public DappFundFlowEntity(Long memberId, BigDecimal amount, Integer type, Integer status, Integer fee) {
        this.memberId = memberId;
        this.amount = amount;
        this.type = type;
        this.status = status;
        this.fee = fee;
        this.setCreateBy("system");
        this.setUpdateBy("system");
@@ -50,4 +51,6 @@
    @TableField(exist = false)
    private String address;
    private Integer fee;
}