Commit 69064313 authored by shenxin's avatar shenxin

修改

parent 8108e64f
...@@ -101,6 +101,11 @@ public class SupplementTaskImpl implements ITaskExcuteService { ...@@ -101,6 +101,11 @@ public class SupplementTaskImpl implements ITaskExcuteService {
} catch (Exception ex) { } catch (Exception ex) {
log.error("转换失败:SupplementID:" + e.getId()); log.error("转换失败:SupplementID:" + e.getId());
log.error("转换失败:失败原因" + ex.getMessage()); log.error("转换失败:失败原因" + ex.getMessage());
// 是否执行转化(0.未执行 1.已执行)
e.setIsExecute("1");
//是否转化成功(0默认 1成功)
e.setIsSuccess("0");
e.setFailReason("转换失败:失败原因" + ex.getMessage());
return e; return e;
} }
}).collect(Collectors.toList()); }).collect(Collectors.toList());
......
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