| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- package com.ruoyi.system.service.impl;
- import java.util.List;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import com.ruoyi.system.domain.SysOperLog;
- import com.ruoyi.system.mapper.SysOperLogMapper;
- import com.ruoyi.system.service.ISysOperLogService;
- /**
- * 操作日志 服务层处理
- *
- * @author ruoyi
- */
- @Service
- public class SysOperLogServiceImpl implements ISysOperLogService {
- @Autowired
- private SysOperLogMapper operLogMapper;
- /**
- * 新增操作日志
- *
- * @param operLog 操作日志对象
- */
- @Override
- public void insertOperlog(SysOperLog operLog) {
- operLogMapper.insertOperlog(operLog);
- }
- /**
- * 查询系统操作日志集合
- *
- * @param operLog 操作日志对象
- * @return 操作日志集合
- */
- @Override
- public List<SysOperLog> selectOperLogList(SysOperLog operLog) {
- return operLogMapper.selectOperLogList(operLog);
- }
- /**
- * 查询操作日志详细
- *
- * @param operId 操作ID
- * @return 操作日志对象
- */
- @Override
- public SysOperLog selectOperLogById(Long operId) {
- return operLogMapper.selectOperLogById(operId);
- }
- }
|