From aa2eae024f8f251c8e2b9eace5351dea7e315ed7 Mon Sep 17 00:00:00 2001 From: jiangqs <jiangqs> Date: 星期一, 24 四月 2023 11:41:48 +0800 Subject: [PATCH] BUG --- hrt-modules/hrt-system/src/main/java/com/hrt/system/service/impl/SysOperLogServiceImpl.java | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/hrt-modules/hrt-system/src/main/java/com/hrt/system/service/impl/SysOperLogServiceImpl.java b/hrt-modules/hrt-system/src/main/java/com/hrt/system/service/impl/SysOperLogServiceImpl.java index a7327d1..078b63e 100644 --- a/hrt-modules/hrt-system/src/main/java/com/hrt/system/service/impl/SysOperLogServiceImpl.java +++ b/hrt-modules/hrt-system/src/main/java/com/hrt/system/service/impl/SysOperLogServiceImpl.java @@ -2,11 +2,12 @@ import java.util.List; -import com.hrt.system.service.ISysOperLogService; -import org.springframework.beans.factory.annotation.Autowired; +import com.hrt.system.service.user.ISysOperLogService; import org.springframework.stereotype.Service; import com.hrt.system.api.domain.SysOperLog; -import com.hrt.system.mapper.SysOperLogMapper; +import com.hrt.system.mapper.user.SysOperLogMapper; + +import javax.annotation.Resource; /** * 操作日志 服务层处理 @@ -16,7 +17,7 @@ @Service public class SysOperLogServiceImpl implements ISysOperLogService { - @Autowired + @Resource private SysOperLogMapper operLogMapper; /** -- Gitblit v1.7.1