houzhongjian
2024-08-02 d141aee7ec84d3578a19be8c26f10759c1e557b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.iailab.module.infra.enums;
 
/**
 * Infra 字典类型的枚举类
 *
 * @author iailab
 */
public interface DictTypeConstants {
 
    String JOB_STATUS = "infra_job_status"; // 定时任务状态的枚举
    String JOB_LOG_STATUS = "infra_job_log_status"; // 定时任务日志状态的枚举
 
    String API_ERROR_LOG_PROCESS_STATUS = "infra_api_error_log_process_status"; // API 错误日志的处理状态的枚举
 
    String CONFIG_TYPE = "infra_config_type"; // 参数配置类型
    String BOOLEAN_STRING = "infra_boolean_string"; // Boolean 是否类型
 
    String OPERATE_TYPE = "infra_operate_type"; // 操作类型
 
}