You've already forked FrameTour-BE
彻底铲除OSSUtil,抽象、修改
This commit is contained in:
src/main
java
com
ycwl
basic
config
controller
model
pc
template
entity
service
storage
StorageFactory.java
adapters
entity
enums
exceptions
StorageConfigException.javaStorageException.javaStorageUndefinedException.javaStorageUnsupportedException.javaUploadFileFailedException.java
starter
tests
utils
task
utils
videoTask
resources
@ -0,0 +1,22 @@
|
||||
package com.ycwl.basic.videoTask.enums;
|
||||
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
public enum VideoTaskTriggerReason {
|
||||
DEVICE_UPLOAD("设备检测人脸"),
|
||||
USER_MANUAL("用户手动触发"),
|
||||
ADMIN_MANUAL("后台手动触发"),
|
||||
SCHEDULE("定时触发"),
|
||||
USER_FACE_UPLOAD("用户上传人脸触发");
|
||||
|
||||
@Getter
|
||||
private final String desc;
|
||||
@Getter
|
||||
@Setter
|
||||
private String extData;
|
||||
VideoTaskTriggerReason(String desc) {
|
||||
this.desc = desc;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user