|
@@ -175,8 +175,10 @@ public class QwWatchLogServiceImpl extends ServiceImpl<QwWatchLogMapper, QwWatch
|
|
|
vo.setFirstOnline(stat.getFirstOnline());
|
|
|
vo.setFirstOver(stat.getFirstOver());
|
|
|
}
|
|
|
-
|
|
|
- param.setIds(param.getIds().replace("(","").replace(")",""));
|
|
|
+ if (StringUtils.isNotBlank(param.getIds())) {
|
|
|
+ String replace = param.getIds().replace("(", "").replace(")", "");
|
|
|
+ param.setIdsList(Arrays.asList(replace.split(",")));
|
|
|
+ }
|
|
|
Long total = qwWatchLogMapper.selectQwExtCountByDayAndCount(param);
|
|
|
rspData.setRows(vos);
|
|
|
rspData.setTotal(total);
|