资源文件添加创建部门、下载数量

This commit is contained in:
cjw 2024-06-20 16:20:23 +08:00
parent c058749afd
commit 177b5e8a69
2 changed files with 23 additions and 6 deletions

View File

@ -41,15 +41,22 @@ public class SysOssResourceVo implements Serializable {
private String fileName;
/**
* 状态
* 文件路径
*/
private Integer status;
private String filePath;
/**
* 文件后缀名
*/
private String fileSuffix;
/**
* 状态
*/
private Integer status;
private Long downloadNum;
/**
* 容量
*/
@ -60,5 +67,8 @@ public class SysOssResourceVo implements Serializable {
@Translation(type = TransConstant.USER_ID_TO_NAME)
private Long createBy;
@Translation(type = TransConstant.DEPT_ID_TO_NAME)
private Long createDept;
}

View File

@ -47,6 +47,11 @@ public class SysOssTextbookVo implements Serializable {
*/
private String filePath;
/**
* 文件后缀名
*/
private String fileSuffix;
/**
* 1课件2课堂3作业4试卷
*/
@ -57,10 +62,7 @@ public class SysOssTextbookVo implements Serializable {
*/
private Integer status;
/**
* 文件后缀名
*/
private String fileSuffix;
private Long downloadNum;
/**
* 容量
@ -72,5 +74,10 @@ public class SysOssTextbookVo implements Serializable {
@Translation(type = TransConstant.USER_ID_TO_NAME)
private Long createBy;
@Translation(type = TransConstant.DEPT_ID_TO_NAME)
private Long createDept;
}