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;
|
|
/**
|
* 会员入金买A币
|
*/
|
@Data
|
@TableName("dapp_charge_usdt")
|
public class DappChargeUsdtEntity extends BaseEntity {
|
/**
|
*
|
*/
|
private Long memberId;
|
/**
|
*会员地址
|
*/
|
private String memberAddress;
|
/**
|
*会员入金的HASH
|
*/
|
private String memberHash;
|
/**
|
*状态 1:进行中 2:成功
|
*/
|
private Integer status;
|
/**
|
*usdt金额
|
*/
|
private BigDecimal amount;
|
/**
|
*购买数量
|
*/
|
private BigDecimal totalCnt;
|
/**
|
*实际产生数量
|
*/
|
private BigDecimal realCnt;
|
|
public DappChargeUsdtEntity(){}
|
|
public DappChargeUsdtEntity(Long memberId,
|
String memberAddress,
|
String memberHash,
|
Integer status,
|
BigDecimal amount,
|
BigDecimal totalCnt,
|
BigDecimal realCnt){
|
this.memberId = memberId;
|
this.memberAddress = memberAddress;
|
this.memberHash = memberHash;
|
this.status = status;
|
this.amount = amount;
|
this.totalCnt = totalCnt;
|
this.realCnt = realCnt;
|
}
|
}
|