Commit c2076f5e authored by wuzhilong's avatar wuzhilong

更新制证包上异常处理

parent 1a7568fe
......@@ -84,10 +84,17 @@ public class ImportXmlServiceImpl implements ImportXmlService {
writer.close();
} catch (IOException e) {
e.printStackTrace();
return false;
}
preproPersonDto.setTpPath(url);
preproPersonMapper.savePreproPersonEntity(preproPersonDto);
try {
preproPersonDto.setTpPath(url);
preproPersonMapper.savePreproPersonEntity(preproPersonDto);
// preproPersonMapper.savePreproPersonCLOB(preproPersonDto);
}catch (Exception e){
e.printStackTrace();
return false;
}
}
return true;
}
......
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