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 MemberCoinWithdrawVo {  
 | 
      
 | 
    @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 String address;  
 | 
    /**  
 | 
     * 提币数量  
 | 
     */  
 | 
    private BigDecimal amount;  
 | 
    /**  
 | 
     * 手续费  
 | 
     */  
 | 
    private BigDecimal feeAmount;  
 | 
    /**  
 | 
     * 币种  
 | 
     */  
 | 
    private String symbol;  
 | 
    /**  
 | 
     * 状态  
 | 
     */  
 | 
    private int status;  
 | 
    private String label;  
 | 
    private String tag;  
 | 
      
 | 
    /**  
 | 
     * 是否内部转账 Y-是N-不是  
 | 
     */  
 | 
    private String isInside;  
 | 
      
 | 
    private String inviteId;  
 | 
  
 | 
}  
 |