文件列表查询、文件搜索接口增加是否公开标志位返回

This commit is contained in:
liangwen 2025-09-17 13:49:33 +08:00
parent 09a09d8bb8
commit 87cb33a309
3 changed files with 3 additions and 0 deletions

View File

@ -24,4 +24,5 @@ public class FileSearch {
private String deleteTime; private String deleteTime;
private String deleteBatchNum; private String deleteBatchNum;
private Long downloadCnt; private Long downloadCnt;
private Integer isPublic;
} }

View File

@ -45,4 +45,5 @@ public class FileListVO {
private String accessPermission; private String accessPermission;
private Long downloadCnt; private Long downloadCnt;
private Integer isPublic;
} }

View File

@ -23,4 +23,5 @@ public class SearchFileVO {
private Integer isDir; private Integer isDir;
private String uploadTime; private String uploadTime;
private Long downloadCnt; private Long downloadCnt;
private Integer isPublic;
} }