package com.xcong.excoin.modules.member.entity;
|
|
import java.math.BigDecimal;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.xcong.excoin.common.entity.BaseEntity;
|
|
import lombok.Data;
|
|
/**
|
* 会员充币表
|
*
|
* @author wzy
|
* @date 2020-05-12
|
**/
|
@Data
|
@TableName("member_coin_charge")
|
public class MemberCoinChargeEntity extends BaseEntity{
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
/**
|
* 会员ID
|
*/
|
private Long memberId;
|
/**
|
* 凭证
|
*/
|
private Long certificate;
|
/**
|
* 充值金额
|
*/
|
private BigDecimal amount;
|
/**
|
* 上次更新时钱包金额
|
*/
|
private BigDecimal lastAmount;
|
/**
|
* 状态
|
*/
|
private int status;
|
/**
|
* 币种
|
*/
|
private String symbol;
|
/**
|
* 地址
|
*/
|
private String address;
|
private String tag;
|
private String hash;
|
/**
|
* 订单编号
|
*/
|
private String orderCode;
|
|
/**
|
* 查询条件:第一查询条件
|
*/
|
@TableField(exist = false)
|
private String account;
|
|
}
|