123
This commit is contained in:
@@ -26,7 +26,7 @@ public class AccountBankcard implements Serializable {
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@Schema(description = "ID")
|
||||
private Integer id;
|
||||
private Long id;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -1,62 +0,0 @@
|
||||
package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
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 AccountBusiness implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
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;
|
||||
}
|
||||
@@ -25,7 +25,7 @@ public class AccountCash implements Serializable {
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private Long id;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -29,7 +29,7 @@ public class AccountDetail implements Serializable {
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
/**
|
||||
* 账户类型ID 1 。充值的金额 2 。收益的金额 3 。充值的彩币 4 收益的彩币
|
||||
*/
|
||||
|
||||
@@ -25,7 +25,7 @@ public class Anchor implements Serializable{
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private Long id;
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ public class AnchorApply implements Serializable {
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private Long id;
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ public class Banner implements Serializable {
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private Long id;
|
||||
/**
|
||||
* 类别 1 首页轮播
|
||||
*/
|
||||
|
||||
@@ -24,11 +24,11 @@ public class DynamicImages implements Serializable {
|
||||
* ID
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private Long id;
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
/**
|
||||
* 动态ID
|
||||
*/
|
||||
|
||||
@@ -23,7 +23,7 @@ public class Gift implements Serializable {
|
||||
* 礼物ID
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private Long id;
|
||||
/**
|
||||
* 类型 0 普通礼物 1svga礼物
|
||||
*/
|
||||
|
||||
@@ -17,6 +17,7 @@ import java.time.LocalDateTime;
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_give_log")
|
||||
@Deprecated
|
||||
public class GiveLog implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
@@ -41,7 +42,7 @@ public class GiveLog implements Serializable {
|
||||
/**
|
||||
* 消费方用户
|
||||
*/
|
||||
private Integer sourceUserId;
|
||||
private Long sourceUserId;
|
||||
/**
|
||||
* 消费方用户
|
||||
*/
|
||||
|
||||
@@ -23,7 +23,7 @@ public class MemberSkill implements Serializable {
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private Long id;
|
||||
/**
|
||||
* 类型 0 普通 1 超级
|
||||
*/
|
||||
|
||||
@@ -25,7 +25,7 @@ public class ReportCate implements Serializable {
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@Schema(description = "举报分类ID")
|
||||
private Integer id;
|
||||
private Long id;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ public class UserCameraAudit implements Serializable {
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private Long id;
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
@@ -48,7 +48,7 @@ public class UserCameraAudit implements Serializable {
|
||||
/**
|
||||
* 审核时间
|
||||
*/
|
||||
private Long auditTime;
|
||||
private LocalDateTime auditTime;
|
||||
/**
|
||||
* 审核次数
|
||||
*/
|
||||
|
||||
@@ -23,6 +23,6 @@ public class UserCodeGen implements Serializable {
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ public class UserFollow implements Serializable {
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 关注人ID
|
||||
|
||||
@@ -24,7 +24,7 @@ public class UserMember implements Serializable {
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private Long id;
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user