1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-10-11 02:05:15 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

定时任务相关修改;添加schedule_task数据库表;BusinessErrorCode扩充;QCloudCosUtils调整(暂存)

This commit is contained in:
2022-04-10 22:09:12 +08:00
parent c84cd46197
commit 63d8192372
14 changed files with 726 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
package plus.bookshelf.Common.Enum;
public enum ScheduleTaskActionEnum {
CHECK_FILE_IS_UPLOADED("checkFileIsUploaded");
private String action;
ScheduleTaskActionEnum(String action) {
this.action = action;
}
public String getAction() {
return action;
}
}