package com.gkhy.safePlatform.safeCheck.enums; public enum SchedulesTimeConfigEnum { //调度扫描时间 SCHEDULES_SCAN_SECONDS("未来30分钟内需要加入调度的任务单元",1800L); private String desc; private Long seconds; SchedulesTimeConfigEnum(String desc, Long seconds) { this.desc = desc; this.seconds = seconds; } public String getDesc() { return desc; } public void setDesc(String desc) { this.desc = desc; } public Long getSeconds() { return seconds; } public void setSeconds(Long seconds) { this.seconds = seconds; } }