This commit is contained in:
张良(004796)
2023-12-22 15:51:26 +08:00
parent 87631588e5
commit e29a4edf7c
18 changed files with 742 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
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.time.LocalDateTime;
/**
* 账户业务对象 cai_account_business
*
* @author 77
* @date 2023-12-22
*/
@Data
@TableName("cai_account_business")
public class CaiAccountBusiness implements Serializable {
private static final long serialVersionUID=1L;
/**
*
*/
@TableId(value = "id")
private Long id;
/**
* 业务分类 类型: 1.充值 , 2 :提现 3视频 4 礼物 5 系统 6 兑换 7.私信
*/
private Integer cateId;
/**
* 业务名称
*/
private String businessName;
/**
* 业务编码
*/
private String businessCode;
/**
*
*/
private String businessDesc;
/**
* 账户类型
*/
private String accountType;
/**
*
*/
private String accountTypeCode;
/**
* 描述
*/
private String remark;
/**
* 状态标识 1 正常 0 删除
*/
private Integer status;
private LocalDateTime createTime;
}

View File

@@ -0,0 +1,83 @@
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_detail
*
* @author 77
* @date 2023-12-22
*/
@Data
@TableName("cai_account_detail")
public class CaiAccountDetail implements Serializable {
private static final long serialVersionUID=1L;
/**
* 积分记录ID
*/
@TableId(value = "id")
private Long id;
/**
* 用户ID
*/
private Integer userId;
/**
* 账户类型ID 1 。充值的金额 2 。收益的金额 3 。充值的彩币 4 收益的彩币
*/
private Integer accountType;
/**
* 类别
*/
private Integer cateId;
/**
* 业务码
*/
private Long businessCode;
/**
* 订单号
*/
private String orderNo;
/**
* 原有积分
*/
private BigDecimal beforeAmount;
/**
* 变化后积分
*/
private BigDecimal afterAmount;
/**
* 变化值,为正 或者为负
*/
private BigDecimal changeValue;
/**
*
*/
private Long trackUserId;
/**
* 跟踪的关键字
*/
private String trackParam;
/**
* 备注
*/
private String remark;
/**
* 操作IP
*/
private String operateIp;
/**
* 是否为后台用户手动调整
*/
private Integer isAdmin;
private LocalDateTime createTime;
}

View File

@@ -0,0 +1,99 @@
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_recharge
*
* @author 77
* @date 2023-12-22
*/
@Data
@TableName("cai_account_recharge")
public class CaiAccountRecharge implements Serializable {
private static final long serialVersionUID=1L;
/**
*
*/
@TableId(value = "id")
private Long id;
/**
*
*/
private Long userId;
/**
*
*/
private Long goodsId;
/**
*
*/
private String orderNo;
/**
* 订单名
*/
private String orderName;
/**
* 账户 1 金额 2 彩币
*/
private Integer accountType;
/**
* 充值类型 0 手工充值 1 线上充值
*/
private Integer rechargeType;
/**
* 充值金额
*/
private BigDecimal rechargeMoney;
/**
* 状态 1 申请 2 审核通过 3审核不通过
*/
private Integer status;
/**
* 充值平台类型
*/
private Long platformType;
/**
* 充值平台名称
*/
private String platformName;
/**
*
*/
private String payNo;
/**
*
*/
private String returnContent;
/**
*
*/
private BigDecimal rechargeReward;
/**
*
*/
private LocalDateTime verifyTime;
/**
*
*/
private String operateIp;
/**
* 类型: 0积分(默认)1会员
*/
private Integer type;
/**
*
*/
private String appid;
private LocalDateTime createTime;
}