init
This commit is contained in:
@@ -58,13 +58,9 @@ public class CaiAccountCash implements Serializable {
|
||||
*/
|
||||
private String cardAccount;
|
||||
/**
|
||||
* 0 删除 1 申请 2 审核通过 3 审核不通过 4 提现取消
|
||||
* 1 申请 2 审核通过 3 审核不通过 4 提现取消
|
||||
*/
|
||||
private Integer status;
|
||||
/**
|
||||
* 实际到账金额(扣除了多付金额后的)
|
||||
*/
|
||||
private BigDecimal payMoney;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@@ -77,22 +73,10 @@ public class CaiAccountCash implements Serializable {
|
||||
*
|
||||
*/
|
||||
private String verifyRemark;
|
||||
/**
|
||||
* 是否支付宝失败
|
||||
*/
|
||||
private Integer isFail;
|
||||
/**
|
||||
* 是否及时到账,0否 1是
|
||||
*/
|
||||
private Integer isImmediately;
|
||||
/**
|
||||
* 是否已打款,0否 1是
|
||||
*/
|
||||
private Integer isPay;
|
||||
/**
|
||||
* 付款时间,只有立即打款才有
|
||||
*/
|
||||
private LocalDateTime payTime;
|
||||
/**
|
||||
* 是否已导出
|
||||
*/
|
||||
|
||||
@@ -41,10 +41,6 @@ public class CaiAccountRecharge implements Serializable {
|
||||
* 订单名
|
||||
*/
|
||||
private String orderName;
|
||||
/**
|
||||
* 账户 1 金额 2 彩币
|
||||
*/
|
||||
private Integer accountType;
|
||||
/**
|
||||
* 充值类型 0 手工充值 1 线上充值
|
||||
*/
|
||||
@@ -53,6 +49,10 @@ public class CaiAccountRecharge implements Serializable {
|
||||
* 充值金额
|
||||
*/
|
||||
private BigDecimal rechargeMoney;
|
||||
/**
|
||||
* 充值的紫贝
|
||||
*/
|
||||
private Integer coinNum;
|
||||
/**
|
||||
* 状态 1 申请 2 审核通过 3,审核不通过
|
||||
*/
|
||||
|
||||
48
ruoyi-cai/src/main/java/com/ruoyi/cai/domain/CaiGoods.java
Normal file
48
ruoyi-cai/src/main/java/com/ruoyi/cai/domain/CaiGoods.java
Normal file
@@ -0,0 +1,48 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 充值配置对象 cai_goods
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-24
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_goods")
|
||||
public class CaiGoods implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private BigDecimal price;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Long amount;
|
||||
/**
|
||||
* 状态 0 可用 1不可用
|
||||
*/
|
||||
private Integer status;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 提现 - 兑换配置对象 cai_withdraw_exchange
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-24
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_withdraw_exchange")
|
||||
public class CaiWithdrawExchange implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
/**
|
||||
* 兑换金额
|
||||
*/
|
||||
private Integer money;
|
||||
/**
|
||||
* 所需货币数量
|
||||
*/
|
||||
private Integer coinNum;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user