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.
virtual-patient/virtual-patient-model/src/main/java/com/supervision/model/MaterialLibrary.java

53 lines
1.0 KiB
Java

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_resourcefile_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;
}