From 49eee4769a63b0c24d19bd676cdb0eb0df0a6541 Mon Sep 17 00:00:00 2001
From: zhanghl <253316343@qq.com>
Date: 星期二, 20 五月 2025 18:32:18 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev
---
aps-modules/aps-core/src/main/java/com/aps/core/service/impl/ApsWeldSeamStandardServiceImpl.java | 33 +++++++++++++++++++++++++++++++++
1 files changed, 33 insertions(+), 0 deletions(-)
diff --git a/aps-modules/aps-core/src/main/java/com/aps/core/service/impl/ApsWeldSeamStandardServiceImpl.java b/aps-modules/aps-core/src/main/java/com/aps/core/service/impl/ApsWeldSeamStandardServiceImpl.java
new file mode 100644
index 0000000..0c29784
--- /dev/null
+++ b/aps-modules/aps-core/src/main/java/com/aps/core/service/impl/ApsWeldSeamStandardServiceImpl.java
@@ -0,0 +1,33 @@
+package com.aps.core.service.impl;
+
+import java.util.List;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.aps.core.mapper.ApsWeldSeamStandardMapper;
+import com.aps.core.domain.ApsWeldSeamStandard;
+import com.aps.core.service.IApsWeldSeamStandardService;
+
+/**
+ * 鐒婄紳鏍囧噯Service涓氬姟灞傚鐞�
+ *
+ * @author user
+ * @date 2023-11-05
+ */
+@Service
+public class ApsWeldSeamStandardServiceImpl implements IApsWeldSeamStandardService
+{
+ @Autowired
+ private ApsWeldSeamStandardMapper apsWeldSeamStandardMapper;
+
+ /**
+ * 鏌ヨ鐒婄紳鏍囧噯鍒楄〃
+ *
+ * @param apsWeldSeamStandard 鐒婄紳鏍囧噯
+ * @return 鐒婄紳鏍囧噯
+ */
+ @Override
+ public List<ApsWeldSeamStandard> selectApsWeldSeamStandardList(ApsWeldSeamStandard apsWeldSeamStandard)
+ {
+ return apsWeldSeamStandardMapper.selectApsWeldSeamStandardList(apsWeldSeamStandard);
+ }
+}
\ No newline at end of file
--
Gitblit v1.9.3