| | |
| | | package com.ruoyi.project.monitor.service.impl;
|
| | |
|
| | | import java.util.List;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.stereotype.Service;
|
| | | import com.ruoyi.project.monitor.domain.SysOperLog;
|
| | | import com.ruoyi.project.monitor.mapper.SysOperLogMapper;
|
| | | import com.ruoyi.project.monitor.service.ISysOperLogService;
|
| | | import lombok.RequiredArgsConstructor;
|
| | | import org.springframework.stereotype.Service;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | /**
|
| | | * 操作日志 服务层处理
|
| | |
| | | * @author ruoyi
|
| | | */
|
| | | @Service
|
| | | @RequiredArgsConstructor
|
| | | public class SysOperLogServiceImpl implements ISysOperLogService
|
| | | {
|
| | | @Autowired
|
| | | private SysOperLogMapper operLogMapper;
|
| | | private final SysOperLogMapper operLogMapper;
|
| | |
|
| | | /**
|
| | | * 新增操作日志
|