|
|
@@ -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;
|
|
|
+ }
|
|
|
+}
|