| | |
| | | package com.nq.pojo; |
| | | |
| | | import cn.afterturn.easypoi.excel.annotation.Excel; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | |
| | | @Data |
| | | public class UserWithdraw { |
| | | |
| | | @TableId(type= IdType.AUTO) |
| | | private Integer id; |
| | | @Excel(name = "用户id") |
| | | private Integer userId; |
| | |
| | | private BigDecimal withFee; |
| | | @Excel(name = "原因") |
| | | private String withMsg; |
| | | @Excel(name = "用户手机号") |
| | | private String userPhone; |
| | | @Excel(name = "钱包地址") |
| | | private String walletAddress; |
| | | @Excel(name = "实际出金金额") |
| | | private BigDecimal actualWithdrawal; |
| | | private String coinType; |
| | | |
| | | public UserWithdraw(Integer id, Integer userId, String nickName, Integer agentId, BigDecimal withAmt, Date applyTime, Date transTime, String withName, String bankNo, String bankName, String bankAddress, Integer withStatus, BigDecimal withFee, String withMsg, String userPhone, String walletAddress, BigDecimal actualWithdrawal, String coinType) { |
| | | @TableField(exist = false) |
| | | private String userPhone; |
| | | private String assetsType; |
| | | |
| | | public UserWithdraw(Integer id, Integer userId, String nickName, Integer agentId, BigDecimal withAmt, Date applyTime, Date transTime, String withName, String bankNo, String bankName, String bankAddress, Integer withStatus, BigDecimal withFee, String withMsg) { |
| | | |
| | | this.id = id; |
| | | |
| | | this.userId = userId; |
| | | |
| | | this.nickName = nickName; |
| | | |
| | | this.agentId = agentId; |
| | | |
| | | this.withAmt = withAmt; |
| | | |
| | | this.applyTime = applyTime; |
| | | |
| | | this.transTime = transTime; |
| | | |
| | | this.withName = withName; |
| | | |
| | | this.bankNo = bankNo; |
| | | |
| | | this.bankName = bankName; |
| | | |
| | | this.bankAddress = bankAddress; |
| | | |
| | | this.withStatus = withStatus; |
| | | |
| | | this.withFee = withFee; |
| | | |
| | | this.withMsg = withMsg; |
| | | this.userPhone = userPhone; |
| | | this.walletAddress = walletAddress; |
| | | this.actualWithdrawal = actualWithdrawal; |
| | | this.coinType = coinType; |
| | | |
| | | } |
| | | |
| | | public UserWithdraw() { |
| | | } |
| | | |
| | | public String getWalletAddress(){return walletAddress;} |
| | | |
| | | public void setWalletAddress(String walletAddress){this.walletAddress = walletAddress;} |
| | | |
| | | public Integer getId() { |
| | | return id; |