wangliang 1 anno fa
parent
commit
35bb9d2ab6

+ 1 - 1
sop-business/src/main/java/com/qmth/sop/business/entity/TSJobLog.java

@@ -66,7 +66,7 @@ public class TSJobLog implements Serializable {
         this.objId = tsJobRemind.getObjId();
         this.objName = tsJobRemind.getObjName();
         this.remindType = tsJobRemind.getRemindType();
-        this.createId = tsJobRemind.getReceiveUserId();
+        this.createId = tsJobRemind.getCreateId();
         this.createTime = System.currentTimeMillis();
     }
 

+ 1 - 1
sop-task/src/main/java/com/qmth/sop/task/listener/MyJobListener.java

@@ -75,7 +75,7 @@ public class MyJobListener implements JobListener {
                             Optional.ofNullable(tbSopInfo).orElseThrow(() -> ExceptionResultEnum.SOP_INFO_NO_DATA.exception());
 
                             String code = DelayWarnSeqTypeEnum.DELAY_WARN.getMark() + sequenceService.createCode(DelayWarnSeqTypeEnum.DELAY_WARN.getCode());
-                            tbDelayWarnService.save(new TBDelayWarn(tbSopInfo.getCrmNo(), tbSopInfo.getSopNo(), tbSopInfo.getServiceId(), code, tsJobLog.getCreateTime(), tsJobLog.getCreateId(), tsJobRemind.getExecField()));
+                            tbDelayWarnService.save(new TBDelayWarn(tbSopInfo.getCrmNo(), tbSopInfo.getSopNo(), tbSopInfo.getServiceId(), code, tsJobLog.getCreateTime(), tsJobRemind.getReceiveUserId(), tsJobRemind.getExecField()));
                         }
                     }
                 } catch (Exception e) {