取消 晚上十点关闭火点审核开关 的设置

This commit is contained in:
liuchengqian 2022-06-17 08:38:01 +08:00
parent db0d0d9052
commit 0efa94368b

View File

@ -26,11 +26,11 @@ public class StaticScheduleTask {
settingService.updateSwitchState(settingQo);
}
//晚上十点关闭火点审核开关
@Scheduled(cron = "0 0 22 * * ?")
private void closeVerifySwitch() {
SettingQo settingQo = new SettingQo();
settingQo.setSwitchState("0");
settingService.updateSwitchState(settingQo);
}
// //晚上十点关闭火点审核开关
// @Scheduled(cron = "0 0 22 * * ?")
// private void closeVerifySwitch() {
// SettingQo settingQo = new SettingQo();
// settingQo.setSwitchState("0");
// settingService.updateSwitchState(settingQo);
// }
}