init
This commit is contained in:
@@ -0,0 +1,96 @@
|
||||
package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 用户提现记录对象 cai_account_cash
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-21
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_account_cash")
|
||||
public class AccountCash implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Integer id;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Long userId;
|
||||
/**
|
||||
* 订单号
|
||||
*/
|
||||
private String orderNo;
|
||||
/**
|
||||
* 提现紫贝
|
||||
*/
|
||||
private Long withdrawCoin;
|
||||
/**
|
||||
* 提现金额
|
||||
*/
|
||||
private BigDecimal cashMoney;
|
||||
/**
|
||||
* 真实提现金额
|
||||
*/
|
||||
private BigDecimal realCashMoney;
|
||||
/**
|
||||
* 提现手续费
|
||||
*/
|
||||
private BigDecimal cashFees;
|
||||
/**
|
||||
* 银行名称
|
||||
*/
|
||||
private String bank;
|
||||
/**
|
||||
* 账户名称
|
||||
*/
|
||||
private String cardName;
|
||||
/**
|
||||
* 账户
|
||||
*/
|
||||
private String cardAccount;
|
||||
/**
|
||||
* 1 申请 2 审核通过 3 审核不通过 4 提现取消
|
||||
*/
|
||||
private Integer status;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String operateIp;
|
||||
/**
|
||||
* 审核时间
|
||||
*/
|
||||
private LocalDateTime verifyTime;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String verifyRemark;
|
||||
/**
|
||||
* 是否已打款,0否 1是
|
||||
*/
|
||||
private Integer isPay;
|
||||
/**
|
||||
* 是否已导出
|
||||
*/
|
||||
private Integer isExport;
|
||||
/**
|
||||
* 导出时间
|
||||
*/
|
||||
private LocalDateTime exportTime;
|
||||
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user