yangdamao há 1 ano atrás
pai
commit
1c31e9a79a

+ 4 - 4
zhongzheng-admin-data/src/main/resources/application-pre.yml

@@ -165,8 +165,8 @@ oldOrder:
     inputOrderSn: http://gdxypx.xy.com/WitSystem/BussinessApi/GetNewYxtinputOrderSn
     checkOrderStudent: http://gdxypx.xy.com/WitSystem/BussinessApi/ReAuditUnderOrder
     checkOrderBrokerage: http://gdxypx.xy.com/WitSystem/BussinessApi/CommissionRate
-    refundPay: http://192.168.1.222:5030/common/platform/pay
-    refundPayHandle: http://192.168.1.222:5030/common/platform/pay/handle
+    refundPay: http://192.168.1.222:6030/common/platform/pay
+    refundPayHandle: http://192.168.1.222:6030/common/platform/pay/handle
     updateRemark: http://gdxypx.xy.com/WitSystem/BussinessApi/UpdateOrderAuditRemark
 
 oldSys:
@@ -192,8 +192,8 @@ exam:
     subscribeAddExamNum: http://192.168.1.222:9099/cd/subscribe/add/num
     question: http://120.79.166.78:19013/common/question/getMeasureList
     questionDetail: http://120.79.166.78:19013/common/question/getTopicList
-    subscribe: http://192.168.1.222:5030/common/apply/subscribe
-    cancelSubscribe: http://192.168.1.222:5030/common/apply/subscribe/cancel
+    subscribe: http://192.168.1.222:6030/common/apply/subscribe
+    cancelSubscribe: http://192.168.1.222:6030/common/apply/subscribe/cancel
 
 shared:
     statistics: http://gdxypx.xy.com/WitSystem/BussinessApi/HighSeasData

+ 2 - 2
zhongzheng-system/src/main/java/com/zhongzheng/modules/middleground/record/service/impl/CdExamRoomServiceImpl.java

@@ -144,9 +144,9 @@ public class CdExamRoomServiceImpl extends ServiceImpl<CdExamRoomMapper, CdExamR
                 //考试地点
                 CdExamSite site = examSiteService.getById(item.getExamSiteId());
                 //考试标识
-                String examName = String.format("%s-%s %s (%s)(%s)", item.getExamStartTime(), item.getExamEndTime(),
+                String examName = String.format("%s-%s %s (%s)", item.getExamStartTime(), item.getExamEndTime(),
                         ObjectUtils.isNotNull(item.getExamType()) && item.getExamType() == 2 ? "专场" : "普通场",
-                        item.getExamNum(),site.getSiteAddress());
+                        item.getExamNum());
                 detailVo.setExamName(examName);
                 detailVo.setExamSiteId(site.getSiteId());
                 detailVo.setExamSiteName(site.getSiteAddress());