Commit ff3476db by 曾迫 Committed by 吴博

时间格式错误 bug修复

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