package com.ycl.entity.resources; 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 lombok.EqualsAndHashCode; import java.io.Serializable; import java.time.LocalDateTime; /** *
* *
* * @author lyq * @since 2022-11-08 */ @Data @EqualsAndHashCode(callSuper = false) @TableName("ums_video_resources") public class VideoResources implements Serializable { private static final long serialVersionUID = 1L; /** * 主键Id */ @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 所属Id */ @TableField("belong_to_id") private Integer belongToId; /** * 视频资源类型 01-视频上传 02-单兵 */ @TableField("type") private String type; /** * 视频路径 */ @TableField("url") private String url; /** * 创建人 */ @TableField("create_user") private Long createUser; /** * 创建时间 */ @TableField("create_time") private LocalDateTime createTime; }