Commit f312b886 by 裴大威

Merge branch 'fixbug-guiq-1020357' into 'master'

fixbug-guiq-1020357

See merge request rays/pcloud-book!412
parents b4f00802 2d19e72f
......@@ -62,6 +62,10 @@ public class PcloudRobotWakeUpBizImpl implements PcloudRobotWakeUpBiz {
if (cycle == null || cycle < 1) {
cycle = 1;
}
if (cycle > 23) {
cycle = 23;
}
Integer lastDay = robotWakeUpConfigVO.getLastDay();
if (lastDay == 1) {
lastDay = 3;
......
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