2024-03-14 09:05:00 +08:00
|
|
|
package com.oo.demo.entity;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @BelongsProject: leaf-onlyoffice
|
|
|
|
|
* @BelongsPackage: com.ideayp.leaf.entity
|
|
|
|
|
* @CreateTime: 2022-11-14 10:20
|
|
|
|
|
* @Description: TODO
|
|
|
|
|
* @Version: 1.0
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
@TableName("on_file")
|
|
|
|
|
public class OnFile {
|
|
|
|
|
@TableId
|
|
|
|
|
private String fileId;
|
|
|
|
|
@TableField("`version`")
|
|
|
|
|
private String version;
|
|
|
|
|
private String createdTime;
|
|
|
|
|
private String userName;
|
|
|
|
|
private String userId;
|
|
|
|
|
private String fileName;
|
|
|
|
|
private String fileType;
|
|
|
|
|
private String filePath;
|
2024-03-14 17:59:11 +08:00
|
|
|
private String caseId;
|
2024-03-14 09:05:00 +08:00
|
|
|
private Long fileSize;
|
|
|
|
|
}
|
|
|
|
|
|