| | |
| | | package cc.mrbird.febs.mall.entity; |
| | | |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | |
| | | public class MallProductSell extends BaseEntity { |
| | | |
| | | private Long memberId;// |
| | | private String orderNo; |
| | | private BigDecimal nftTotal;//动态NFT总数 |
| | | private BigDecimal nftCnt;//实际提现数量 |
| | | private BigDecimal nftCntAva;//剩余数量 |
| | | private BigDecimal nftFee;//NFT手续费 |
| | | private BigDecimal fcmFee;//代币手续费 |
| | | private Integer state;//预约状态 0:失败 1:进行中 2:超时 3:已完成 |
| | | |
| | | @TableField(exist = false) |
| | | private String accountLogin; |
| | | } |