package com.sandu.ximon.dao.domain;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 平台文件表
|
*
|
* @TableName platform_file
|
*/
|
@TableName(value = "platform_file")
|
@Data
|
public class PlatformFile implements Serializable {
|
/**
|
* 文件id
|
*/
|
@TableId
|
private Long fileId;
|
|
/**
|
* 文件名称
|
*/
|
private String fileName;
|
|
/**
|
* 文件大小
|
*/
|
private Long fileSize;
|
|
/**
|
* url
|
*/
|
private String fileUrl;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 更新时间
|
*/
|
private Date updateTime;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
}
|