From 9fa1e9aa80718718c2991b5fb32db0dd50ef1248 Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: Tue, 03 Feb 2026 15:52:02 +0800
Subject: [PATCH] 修改

---
 multi-system/src/main/java/com/gkhy/exam/system/service/impl/SupplierSureServiceImpl.java |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/multi-system/src/main/java/com/gkhy/exam/system/service/impl/SupplierSureServiceImpl.java b/multi-system/src/main/java/com/gkhy/exam/system/service/impl/SupplierSureServiceImpl.java
index 597a75a..8fb9fb4 100644
--- a/multi-system/src/main/java/com/gkhy/exam/system/service/impl/SupplierSureServiceImpl.java
+++ b/multi-system/src/main/java/com/gkhy/exam/system/service/impl/SupplierSureServiceImpl.java
@@ -8,6 +8,8 @@
 import com.gkhy.exam.common.utils.SecurityUtils;
 import com.gkhy.exam.system.domain.SupplierSure;
 import com.gkhy.exam.system.mapper.SupplierSureMapper;
+import com.gkhy.exam.system.mapper.SupplierSurePerformanceMapper;
+import com.gkhy.exam.system.mapper.SupplierSureQualityMapper;
 import com.gkhy.exam.system.service.SupplierSureService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
@@ -20,6 +22,10 @@
 
     @Autowired
     private SupplierSureMapper supplierSureMapper;
+    @Autowired
+    private SupplierSurePerformanceMapper performanceMapper;
+    @Autowired
+    private SupplierSureQualityMapper qualityMapper;
 
     @Override
     public CommonPage selectSupplierList(SupplierSure sure) {
@@ -38,6 +44,8 @@
         sure.setCreateTime(LocalDateTime.now());
         sure.setCreateBy(SecurityUtils.getUsername());
         supplierSureMapper.insert(sure);
+        performanceMapper.savePerformance(sure.getId());
+        qualityMapper.saveQuality(sure.getId());
         return CommonResult.success();
     }
 

--
Gitblit v1.9.2