Explorar o código

系统编码管理

yaoyi hai 1 mes
pai
achega
0059cf93df

+ 0 - 0
hr-modules/hr-system/src/main/java/com/hr/system/controller/SysSystemController.java


+ 0 - 0
hr-modules/hr-system/src/main/java/com/hr/system/domain/SysBusinessSystem.java


+ 0 - 0
hr-modules/hr-system/src/main/java/com/hr/system/mapper/SysBusinessSystemMapper.java


+ 0 - 0
hr-modules/hr-system/src/main/java/com/hr/system/service/ISysSystemService.java


+ 39 - 0
hr-modules/hr-system/src/main/java/com/hr/system/service/impl/SysSystemServiceImpl.java

@@ -0,0 +1,39 @@
+package com.hr.system.service.impl;
+
+import com.hr.system.domain.SysBusinessSystem;
+import com.hr.system.mapper.SysBusinessSystemMapper;
+import com.hr.system.service.ISysSystemService;
+import org.springframework.beans.factory.annotation.Autowired;
+
+import java.util.Collections;
+import java.util.List;
+
+/**
+ * @author yaoy
+ * @createTime 2025/9/26 10:56
+ **/
+public class ISysSystemServiceImpl implements ISysSystemService {
+
+    @Autowired
+    private SysBusinessSystemMapper sysBusinessSystemMapper;
+
+    @Override
+    public List<SysBusinessSystem> selectBusinessSystemList() {
+        return Collections.emptyList();
+    }
+
+    @Override
+    public int insertBusinessSystem(SysBusinessSystem dept) {
+        return 0;
+    }
+
+    @Override
+    public int updateBusinessSystem(SysBusinessSystem dept) {
+        return 0;
+    }
+
+    @Override
+    public int deleteBusinessSystemById(Long sysId) {
+        return 0;
+    }
+}

+ 0 - 0
hr-modules/hr-system/src/main/resources/mapper/system/SysBusinessSystemMapper.xml