xiaoyong931011
2022-11-30 600e7e97ef08a03b4d1e142ae9a364317a86e683
src/main/java/cc/mrbird/febs/dapp/entity/DappSdeWithdrawFeeEntity.java
@@ -24,13 +24,16 @@
    private Integer hasReturn;
    private String outAddressName;
    public DappSdeWithdrawFeeEntity() {}
    public DappSdeWithdrawFeeEntity(Long memberId, String address, BigDecimal amount, Long sdeFlowId) {
    public DappSdeWithdrawFeeEntity(Long memberId, String address, BigDecimal amount, Long sdeFlowId, String outAddressName) {
        this.memberId = memberId;
        this.address = address;
        this.amount = amount;
        this.sdeFlowId = sdeFlowId;
        this.hasReturn = 2;
        this.outAddressName = outAddressName;
    }
}