Commit ff3476db by 曾迫 Committed by 吴博

时间格式错误 bug修复

parent 211ca154
...@@ -162,8 +162,12 @@ public class SelfPushBizImpl implements SelfPushBiz { ...@@ -162,8 +162,12 @@ public class SelfPushBizImpl implements SelfPushBiz {
}else { }else {
strs[0]=weekDays; strs[0]=weekDays;
} }
for(int i=0;i<=strs.length-1;i++){ List<String> strings = Arrays.asList(strs);
Integer weekDay = Integer.valueOf(strs[i]); for(int i=0;i<=strings.size()-1;i++){
if(strings.get(i)==null){
break;
}
Integer weekDay = Integer.valueOf(strings.get(i));
if(weekDay==7){ if(weekDay==7){
weekDay=1; weekDay=1;
}else{ }else{
......
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