我有像starttime(上午8点30分)到结束时间(下午5点)的值。我需要检查当前时间是否在stattime和endtime之间。
规则" rule1"
when
day="Monday" && currentTime between (8.45am) and (5.00pm) ;
then
return true;
when
day="Sunday" && currentTime between (9.00am) and (11.00am);
Then
return true;
结束
答案 0 :(得分:2)
插入一个简单类TimeOfWeek的对象,其中包含星期几和当天的当前时间。那你可以
TimeOfWeek( wday == "Monday", tod >= 945 && tod <= 1700 )