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;
|
}
|
}
|