package com.dsh.activity.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @author zhibing.pu
|
* @date 2023/7/12 9:12
|
*/
|
@Data
|
@TableName("t_user_benefits_videos")
|
public class UserBenefitsVideos {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.INPUT)
|
private Long id;
|
/**
|
* 用户id
|
*/
|
@TableField("appUserId")
|
private Integer appUserId;
|
/**
|
* 分类id
|
*/
|
@TableField("benefitsVideoClassificationId")
|
private Integer benefitsVideoClassificationId;
|
/**
|
* 福利视频id
|
*/
|
@TableField("benefitsVideosId")
|
private Integer benefitsVideosId;
|
/**
|
* 获取积分
|
*/
|
@TableField("integral")
|
private Integer integral;
|
/**
|
* 添加时间
|
*/
|
@TableField("insertTime")
|
private Date insertTime;
|
}
|