fix
Helius
2022-08-31 db8be7ac334e1297dcfc3111b926a598bf750002
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package cc.mrbird.febs.dapp.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author wzy
 * @date 2022-08-29
 **/
@Data
@TableName("dapp_sde_withdraw_fee")
public class DappSdeWithdrawFeeEntity extends BaseEntity {
 
    private Long memberId;
 
    private String address;
 
    private BigDecimal amount;
 
    private Long sdeFlowId;
 
    private Integer hasReturn;
 
    private String outAddressName;
 
    public DappSdeWithdrawFeeEntity() {}
 
    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;
    }
}