67 lines
1.2 KiB
Java
67 lines
1.2 KiB
Java
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;
|
|
|
|
}
|