fix
Helius
2022-06-07 22d018876ed1fa4e167e6b4823db1bfbd13d5579
src/main/java/cc/mrbird/febs/dapp/entity/DappFundFlowEntity.java
@@ -21,11 +21,11 @@
    public DappFundFlowEntity() {}
    public DappFundFlowEntity(Long memberId, BigDecimal amount, Integer type, Integer status, Integer fee) {
    public DappFundFlowEntity(Long memberId, BigDecimal amount, Integer type, Integer status, BigDecimal fee) {
        new DappFundFlowEntity(memberId, amount, type, status, fee, null);
    }
    public DappFundFlowEntity(Long memberId, BigDecimal amount, Integer type, Integer status, Integer fee, String fromHash) {
    public DappFundFlowEntity(Long memberId, BigDecimal amount, Integer type, Integer status, BigDecimal fee, String fromHash) {
        this.memberId = memberId;
        this.amount = amount;
        this.type = type;
@@ -51,9 +51,13 @@
    @TableField(exist = false)
    private String address;
    private Integer fee;
    private BigDecimal fee;
    private String toHash;
    private String fromHash;
    private BigDecimal newestPrice;
    private BigDecimal targetAmount;
}