Commit e4a66247 authored by suntao's avatar suntao

用户操作记录 空指针 fix

parent 8e6111d5
...@@ -139,7 +139,7 @@ public class OrderUtil { ...@@ -139,7 +139,7 @@ public class OrderUtil {
optHistoryLog.setLoanId(orderMapping.getLoanId()); optHistoryLog.setLoanId(orderMapping.getLoanId());
optHistoryLog.setChannelId(applyRequestHistory.getChannelId()); optHistoryLog.setChannelId(applyRequestHistory.getChannelId());
optHistoryLog.setOptName(applyRequestHistory.getApplyType().getDesc()); optHistoryLog.setOptName(applyRequestHistory.getApplyType().getDesc());
optHistoryLog.setOptUser("用户发起:".concat(applyRequestHistory.getUserName())); optHistoryLog.setOptUser(applyRequestHistory.getUserName());
optHistoryLog.setOptLogDetail(applyRequestHistory.getDescriptionDetail()); optHistoryLog.setOptLogDetail(applyRequestHistory.getDescriptionDetail());
optHistoryLog.setExtData(applyRequestHistory.getExtData()); optHistoryLog.setExtData(applyRequestHistory.getExtData());
optHistoryLog.setOptResult(applyRequestHistory.getIsSuccess()); optHistoryLog.setOptResult(applyRequestHistory.getIsSuccess());
......
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