55 lines
935 B
Java
55 lines
935 B
Java
package com.peanut.modules.common.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
@TableName("user_vip")
|
|
public class UserVipLog implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 自增 ID
|
|
*/
|
|
@TableId
|
|
private int id;
|
|
/**
|
|
* 管理员ID
|
|
*/
|
|
private Integer adminId;
|
|
/**
|
|
* 会员 ID
|
|
*/
|
|
private Integer userId;
|
|
/**
|
|
* 1超级2医学3国学
|
|
*/
|
|
private Integer type;
|
|
/**
|
|
* 天数
|
|
*/
|
|
private Integer days;
|
|
|
|
|
|
private BigDecimal point;
|
|
|
|
|
|
private BigDecimal jf;
|
|
|
|
|
|
private Date createTime;
|
|
/**
|
|
* 删除标识
|
|
*/
|
|
@TableLogic
|
|
private Integer delFlag;
|
|
|
|
}
|