Commit 125f6b0b authored by 黎博's avatar 黎博

修改下定时任务执行策略接口

parent bab7d84b
......@@ -241,9 +241,9 @@ public class SqlMonitorTaskController {
Map<String, String> hourlyMap = new HashMap<>();
Map<String, String> oneMinMap = new HashMap<>();
Map<String, String> fiveMinMap = new HashMap<>();
oneMinMap.put("value", "0 0/1 * * * ?");
oneMinMap.put("value", "0 */1 * * * ?");
oneMinMap.put("label", "每1分钟执行一次");
fiveMinMap.put("value", "0 0/5 * * * ?");
fiveMinMap.put("value", "0 */5 * * * ?");
fiveMinMap.put("label", "每5分钟执行一次");
hourlyMap.put("value", "0 0 * * * ?");
hourlyMap.put("label", "每小时执行一次");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment