wangliang 1 anno fa
parent
commit
f9d6d6dea3

+ 2 - 2
distributed-print-business/src/main/java/com/qmth/distributed/print/business/service/impl/TCFinalScoreServiceImpl.java

@@ -348,7 +348,7 @@ public class TCFinalScoreServiceImpl extends ServiceImpl<TCFinalScoreMapper, TCF
         String lockKey = SystemConstant.REDIS_FINAL_SCORE_DATA_FLOW_PREFIX + SystemConstant.SYNC + examId + "_" + courseCode + "_" + paperNumber;
         Object o = redisUtil.get(lockKey);
         if (Objects.nonNull(o)) {
-            throw ExceptionResultEnum.ERROR.exception("正在同步数据,请稍候再试!");
+            throw ExceptionResultEnum.ERROR.exception("正在同步期末成绩数据,请稍候再试!");
         }
     }
 
@@ -364,7 +364,7 @@ public class TCFinalScoreServiceImpl extends ServiceImpl<TCFinalScoreMapper, TCF
         String lockKey = SystemConstant.REDIS_FINAL_SCORE_DATA_FLOW_PREFIX + SystemConstant.IMPORT + examId + "_" + courseCode + "_" + paperNumber;
         Object o = redisUtil.get(lockKey);
         if (Objects.nonNull(o)) {
-            throw ExceptionResultEnum.ERROR.exception("正在导入数据,请稍候再试!");
+            throw ExceptionResultEnum.ERROR.exception("正在导入期末成绩数据,请稍候再试!");
         }
     }
 }

+ 2 - 2
distributed-print-business/src/main/java/com/qmth/distributed/print/business/service/impl/TCPaperStructServiceImpl.java

@@ -303,7 +303,7 @@ public class TCPaperStructServiceImpl extends ServiceImpl<TCPaperStructMapper, T
         String lockKey = SystemConstant.REDIS_PAPER_STRUCT_FLOW_PREFIX + SystemConstant.SYNC + examId + "_" + courseCode + "_" + paperNumber;
         Object o = redisUtil.get(lockKey);
         if (Objects.nonNull(o)) {
-            throw ExceptionResultEnum.ERROR.exception("正在同步数据,请稍候再试!");
+            throw ExceptionResultEnum.ERROR.exception("正在同步试卷蓝图数据,请稍候再试!");
         }
     }
 
@@ -319,7 +319,7 @@ public class TCPaperStructServiceImpl extends ServiceImpl<TCPaperStructMapper, T
         String lockKey = SystemConstant.REDIS_PAPER_STRUCT_FLOW_PREFIX + SystemConstant.IMPORT + examId + "_" + courseCode + "_" + paperNumber;
         Object o = redisUtil.get(lockKey);
         if (Objects.nonNull(o)) {
-            throw ExceptionResultEnum.ERROR.exception("正在导入数据,请稍候再试!");
+            throw ExceptionResultEnum.ERROR.exception("正在导入试卷蓝图数据,请稍候再试!");
         }
     }
 }