This commit is contained in:
张良(004796)
2023-12-21 19:07:59 +08:00
parent fa643e87df
commit b899d480df
6 changed files with 229 additions and 0 deletions

View 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 CaiUserMember 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;
}