This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
package jnpf.entity;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class Information {
|
||||
|
||||
/** 主键id */
|
||||
private String id;
|
||||
|
||||
/** 文件名称 */
|
||||
private String fileName;
|
||||
|
||||
/** 文件大小 */
|
||||
private Double filesize;
|
||||
|
||||
/** 文件链接 */
|
||||
private String fileUrl;
|
||||
|
||||
/** 文件拥有者id */
|
||||
private String owner;
|
||||
|
||||
/** 文件后缀 */
|
||||
private String fileSuffix;
|
||||
|
||||
/** 文件类型 1.空间 2.文件夹 3.文档 4.文件 */
|
||||
private Integer classification;
|
||||
|
||||
/** 文件种类型 文档 表格..用于web种类搜索 */
|
||||
private String fileType;
|
||||
|
||||
/** 文件路径 */
|
||||
private String filePath;
|
||||
|
||||
/** 文件父级id */
|
||||
private String filePid;
|
||||
|
||||
/** 创建时间 */
|
||||
private Date creatorTime;
|
||||
|
||||
/** 创建用户 */
|
||||
private String creatorUserId;
|
||||
|
||||
/** 修改时间 */
|
||||
private Date lastModifyTime;
|
||||
|
||||
/** 修改用户 */
|
||||
private String lastModifyUserId;
|
||||
|
||||
/** 删除时间 */
|
||||
private Date deleteTime;
|
||||
|
||||
/** 删除用户 */
|
||||
private String deleteUserId;
|
||||
|
||||
/** 删除标志(1.删除 0未删除) */
|
||||
private Integer enabledMark;
|
||||
|
||||
/** 租户id */
|
||||
private String tenantId;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user