package com.xcong.excoin.modules.member.vo;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
@Data
|
public class MemberCoinChargeVo {
|
@TableId(value = "id",type = IdType.AUTO)
|
private Long id;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date createTime;
|
/**
|
* 手机号(包含国际手机号)
|
*/
|
private String phone;
|
|
/**
|
* 邮箱
|
*/
|
private String email;
|
/**
|
* 会员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;
|
|
}
|