AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
``` /** * @author 张跃帅 * @Description: 定时器任务状态-枚举 * @date 2020/08/12 */ @Getter public enum TimerTaskFlagEnum { /** * 未运行 */ NOT_RUNNING(0, "未运行"), /** * 运行中 */ YES_RUNNING(1, "运行中"), /** * 停止 */ STOP(2, "停止"); private final Integer code; private final String name; TimerTaskFlagEnum(Integer code, String name) { this.code = code; this.name = name; } }