init
This commit is contained in:
66
ruoyi-cai/src/main/java/com/ruoyi/cai/domain/UserMember.java
Normal file
66
ruoyi-cai/src/main/java/com/ruoyi/cai/domain/UserMember.java
Normal file
@@ -0,0 +1,66 @@
|
||||
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_user_member
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-21
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_user_member")
|
||||
public class UserMember implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Integer id;
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Integer userId;
|
||||
/**
|
||||
* MID
|
||||
*/
|
||||
private Integer mid;
|
||||
/**
|
||||
* 类型 0 普通 1 超级
|
||||
*/
|
||||
private Integer memberType;
|
||||
/**
|
||||
* 过期时间
|
||||
*/
|
||||
private Integer expire;
|
||||
/**
|
||||
* 类型 0 打开 1 关闭
|
||||
*/
|
||||
private Integer rankHide;
|
||||
/**
|
||||
* 类型 0 打开 1 关闭
|
||||
*/
|
||||
private Integer noGreet;
|
||||
/**
|
||||
* 状态 0 可用 ,1 过期,2不可用
|
||||
*/
|
||||
private Integer status;
|
||||
/**
|
||||
* 永久状态 0 不是 1是
|
||||
*/
|
||||
private Integer longs;
|
||||
/**
|
||||
* 过期时间
|
||||
*/
|
||||
private LocalDateTime expireDate;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user