Commit 8524c904 by guojuxing

数据解析修复

parent 5987dbf3
......@@ -232,6 +232,9 @@ public class CollaboratorApiServiceImpl implements CollaboratorApiService {
String[] strArr = string.split(SignConstants.UNDERLINE);
List<Integer> list = new ArrayList<>(strArr.length);
for (String str : strArr) {
if (StringUtils.isBlank(str)) {
continue;
}
list.add(Integer.parseInt(str));
}
return list;
......
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