资源文件添加创建部门、下载数量
This commit is contained in:
parent
c058749afd
commit
177b5e8a69
|
@ -41,15 +41,22 @@ public class SysOssResourceVo implements Serializable {
|
||||||
private String fileName;
|
private String fileName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 状态
|
* 文件路径
|
||||||
*/
|
*/
|
||||||
private Integer status;
|
private String filePath;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 文件后缀名
|
* 文件后缀名
|
||||||
*/
|
*/
|
||||||
private String fileSuffix;
|
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)
|
@Translation(type = TransConstant.USER_ID_TO_NAME)
|
||||||
private Long createBy;
|
private Long createBy;
|
||||||
|
|
||||||
|
@Translation(type = TransConstant.DEPT_ID_TO_NAME)
|
||||||
|
private Long createDept;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,6 +47,11 @@ public class SysOssTextbookVo implements Serializable {
|
||||||
*/
|
*/
|
||||||
private String filePath;
|
private String filePath;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文件后缀名
|
||||||
|
*/
|
||||||
|
private String fileSuffix;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 1课件,2课堂,3作业,4试卷
|
* 1课件,2课堂,3作业,4试卷
|
||||||
*/
|
*/
|
||||||
|
@ -57,10 +62,7 @@ public class SysOssTextbookVo implements Serializable {
|
||||||
*/
|
*/
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
/**
|
private Long downloadNum;
|
||||||
* 文件后缀名
|
|
||||||
*/
|
|
||||||
private String fileSuffix;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 容量
|
* 容量
|
||||||
|
@ -72,5 +74,10 @@ public class SysOssTextbookVo implements Serializable {
|
||||||
@Translation(type = TransConstant.USER_ID_TO_NAME)
|
@Translation(type = TransConstant.USER_ID_TO_NAME)
|
||||||
private Long createBy;
|
private Long createBy;
|
||||||
|
|
||||||
|
@Translation(type = TransConstant.DEPT_ID_TO_NAME)
|
||||||
|
private Long createDept;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue