71 lines
1.3 KiB
Java
71 lines
1.3 KiB
Java
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_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",type = IdType.AUTO)
|
|
private Long id;
|
|
/**
|
|
* 用户ID
|
|
*/
|
|
private Long 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 memberStatus;
|
|
/**
|
|
* 永久状态 0-不是 1-是
|
|
*/
|
|
private Integer longs;
|
|
/**
|
|
* 过期时间
|
|
*/
|
|
private LocalDateTime expireDate;
|
|
|
|
/**
|
|
* 购买时间
|
|
*/
|
|
private LocalDateTime createTime;
|
|
|
|
}
|