From 5a5b01fa9824a42e3eb033088a20e24c32b30dda Mon Sep 17 00:00:00 2001
From: xuhy <3313886187@qq.com>
Date: 星期六, 17 八月 2024 16:17:26 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysOperLogServiceImpl.java |   54 +++++++-----------------------------------------------
 1 files changed, 7 insertions(+), 47 deletions(-)

diff --git a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysOperLogServiceImpl.java b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysOperLogServiceImpl.java
index 5174654..b2e0900 100644
--- a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysOperLogServiceImpl.java
+++ b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysOperLogServiceImpl.java
@@ -7,11 +7,14 @@
 
 import com.baomidou.mybatisplus.core.conditions.Wrapper;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import com.ruoyi.system.mapper.SysOperLogMapper;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 import com.ruoyi.system.api.domain.SysOperLog;
 import com.ruoyi.system.service.ISysOperLogService;
+
+import javax.annotation.Resource;
 
 /**
  * 操作日志 服务层处理
@@ -19,8 +22,10 @@
  * @author ruoyi
  */
 @Service
-public class SysOperLogServiceImpl implements ISysOperLogService {
-	@Autowired
+public class SysOperLogServiceImpl extends ServiceImpl<SysOperLogMapper, SysOperLog> implements ISysOperLogService {
+
+
+	@Resource
 	private SysOperLogMapper operLogMapper;
 	
 	/**
@@ -73,50 +78,5 @@
 	@Override
 	public void cleanOperLog() {
 		operLogMapper.cleanOperLog();
-	}
-	
-	@Override
-	public boolean saveBatch(Collection<SysOperLog> entityList, int batchSize) {
-		return false;
-	}
-	
-	@Override
-	public boolean saveOrUpdateBatch(Collection<SysOperLog> entityList, int batchSize) {
-		return false;
-	}
-	
-	@Override
-	public boolean updateBatchById(Collection<SysOperLog> entityList, int batchSize) {
-		return false;
-	}
-	
-	@Override
-	public boolean saveOrUpdate(SysOperLog entity) {
-		return false;
-	}
-	
-	@Override
-	public SysOperLog getOne(Wrapper<SysOperLog> queryWrapper, boolean throwEx) {
-		return null;
-	}
-	
-	@Override
-	public Map<String, Object> getMap(Wrapper<SysOperLog> queryWrapper) {
-		return null;
-	}
-	
-	@Override
-	public <V> V getObj(Wrapper<SysOperLog> queryWrapper, Function<? super Object, V> mapper) {
-		return null;
-	}
-	
-	@Override
-	public BaseMapper<SysOperLog> getBaseMapper() {
-		return null;
-	}
-	
-	@Override
-	public Class<SysOperLog> getEntityClass() {
-		return null;
 	}
 }

--
Gitblit v1.7.1