feat(sj_1.1.0-beta3): 新增执行器类型枚举ExecutorTypeEnum
This commit is contained in:
parent
e05b291556
commit
ba9a2d6944
@ -0,0 +1,23 @@
|
||||
package com.aizuda.snailjob.common.core.enums;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* 执行器类型枚举
|
||||
*
|
||||
* @author dhb52
|
||||
* @date 2024-07-09 23:48:55
|
||||
* @since 1.1.0
|
||||
*/
|
||||
@AllArgsConstructor
|
||||
@Getter
|
||||
public enum ExecutorTypeEnum {
|
||||
|
||||
JAVA(1),
|
||||
PYTHON(2),
|
||||
;
|
||||
|
||||
private final int type;
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user