You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.0 KiB
Java
53 lines
1.0 KiB
Java
1 year ago
|
package com.supervision.model;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
import java.io.Serializable;
|
||
|
import java.util.Date;
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 素材库表
|
||
|
* @TableName vp_material_library
|
||
|
*/
|
||
|
@TableName(value ="vp_material_library")
|
||
|
@Data
|
||
|
public class MaterialLibrary implements Serializable {
|
||
|
/**
|
||
|
* 主键
|
||
|
*/
|
||
|
private String id;
|
||
|
|
||
|
/**
|
||
|
* 文件资源id 对应vp_file_resource的主键
|
||
|
*/
|
||
|
private String fileResourceId;
|
||
|
|
||
|
/**
|
||
|
* 素材名称;不采用vp_file_resource中的file_name字段
|
||
|
*/
|
||
|
private String materialName;
|
||
|
|
||
|
/**
|
||
|
* 素材类型 0:图片 1:视频 2:音频
|
||
|
*/
|
||
|
private String materialType;
|
||
|
|
||
|
/**
|
||
|
* 创建人ID
|
||
|
*/
|
||
|
private String createUserId;
|
||
|
|
||
|
/**
|
||
|
* 创建时间
|
||
|
*/
|
||
|
private Date createTime;
|
||
|
|
||
|
/**
|
||
|
* 更新人
|
||
|
*/
|
||
|
private Date updateUserId;
|
||
|
|
||
|
@TableField(exist = false)
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
}
|