This commit is contained in:
张良(004796)
2024-01-03 14:26:20 +08:00
parent 322bd479e2
commit 8720ad7eaa
44 changed files with 93 additions and 46 deletions

View File

@@ -1,5 +1,6 @@
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;
@@ -22,7 +23,7 @@ public class UserMember implements Serializable {
/**
*
*/
@TableId(value = "id")
@TableId(value = "id",type = IdType.AUTO)
private Integer id;
/**
* 用户ID
@@ -41,19 +42,19 @@ public class UserMember implements Serializable {
*/
private Integer expire;
/**
* 类型 0 打开 1 关闭
* 隐藏排行榜模式 0-关闭 1-打开
*/
private Integer rankHide;
/**
* 类型 0 打开 1 关闭
* 隐身模式 0-关闭 1-打开
*/
private Integer noGreet;
/**
* 状态 0 可用 ,1 过期,2不可用
* 状态 0-可用,1-过期,2-不可用
*/
private Integer status;
/**
* 永久状态 0 不是 1是
* 永久状态 0-不是 1-
*/
private Integer longs;
/**
@@ -61,6 +62,9 @@ public class UserMember implements Serializable {
*/
private LocalDateTime expireDate;
/**
* 购买时间
*/
private LocalDateTime createTime;
}