parent
66a6f755dc
commit
8267ed338b
|
|
@ -63,9 +63,12 @@ public class EvectionServiceImpl implements EvectionService {
|
|||
evectionDao.insertEvection(o);
|
||||
//在循环加入出行人的
|
||||
for (int i = 0; i < split.length; i++) {
|
||||
o.setUserId(Long.valueOf(split[i]));
|
||||
o.setUserName(splitName[i]);
|
||||
evectionDao.insertEvection(o);
|
||||
String userIdStr = split[i];
|
||||
if(!userIdStr.trim().isEmpty()){
|
||||
o.setUserId(Long.valueOf(split[i]));
|
||||
o.setUserName(splitName[i]);
|
||||
evectionDao.insertEvection(o);
|
||||
}
|
||||
}
|
||||
k = 1;
|
||||
} catch (Exception e) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue