package com.xcong.excoin.modules.member.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Data
|
@TableName("td_coin_charge")
|
public class TdCoinCharge {
|
|
private Long id;
|
private Long memberId;
|
|
private String certificate;
|
|
private BigDecimal amount;
|
|
private BigDecimal lastAmount;
|
|
// 1:初始状态 2:手续费转入 3:已归集
|
private int status;
|
|
private String symbol;
|
|
private String address;
|
|
private String tag;
|
|
private String hash;
|
|
private String orderCode;
|
|
private String transHash;
|
|
private Date createTime;
|
}
|