|
@@ -1,79 +0,0 @@
|
|
|
-package com.jzg.service.impl;
|
|
|
|
|
-
|
|
|
|
|
-import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
-import com.jzg.commons.entity.po.SysOperLog;
|
|
|
|
|
-import com.jzg.mapper.SysOperLogMapper;
|
|
|
|
|
-import com.jzg.service.SysOperLogService;
|
|
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
-import org.springframework.stereotype.Service;
|
|
|
|
|
-
|
|
|
|
|
-import java.util.List;
|
|
|
|
|
-
|
|
|
|
|
-/**
|
|
|
|
|
- * 操作日志 服务层处理
|
|
|
|
|
- *
|
|
|
|
|
- * @author dongxin
|
|
|
|
|
- */
|
|
|
|
|
-@Service
|
|
|
|
|
-public class SysOperLogServiceImpl extends ServiceImpl<SysOperLogMapper, SysOperLog>
|
|
|
|
|
- implements SysOperLogService
|
|
|
|
|
-{
|
|
|
|
|
- @Autowired
|
|
|
|
|
- private SysOperLogMapper sysOperLogMapper;
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 新增操作日志
|
|
|
|
|
- *
|
|
|
|
|
- * @param operLog 操作日志对象
|
|
|
|
|
- */
|
|
|
|
|
- @Override
|
|
|
|
|
- public void insertOperlog(SysOperLog operLog)
|
|
|
|
|
- {
|
|
|
|
|
- sysOperLogMapper.insertOperlog(operLog);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 查询系统操作日志集合
|
|
|
|
|
- *
|
|
|
|
|
- * @param operLog 操作日志对象
|
|
|
|
|
- * @return 操作日志集合
|
|
|
|
|
- */
|
|
|
|
|
- @Override
|
|
|
|
|
- public List<SysOperLog> selectOperLogList(SysOperLog operLog)
|
|
|
|
|
- {
|
|
|
|
|
- return sysOperLogMapper.selectOperLogList(operLog);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 批量删除系统操作日志
|
|
|
|
|
- *
|
|
|
|
|
- * @param operIds 需要删除的操作日志ID
|
|
|
|
|
- * @return 结果
|
|
|
|
|
- */
|
|
|
|
|
- @Override
|
|
|
|
|
- public int deleteOperLogByIds(Long[] operIds)
|
|
|
|
|
- {
|
|
|
|
|
- return sysOperLogMapper.deleteOperLogByIds(operIds);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 查询操作日志详细
|
|
|
|
|
- *
|
|
|
|
|
- * @param operId 操作ID
|
|
|
|
|
- * @return 操作日志对象
|
|
|
|
|
- */
|
|
|
|
|
- @Override
|
|
|
|
|
- public SysOperLog selectOperLogById(Long operId)
|
|
|
|
|
- {
|
|
|
|
|
- return sysOperLogMapper.selectOperLogById(operId);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 清空操作日志
|
|
|
|
|
- */
|
|
|
|
|
- @Override
|
|
|
|
|
- public void cleanOperLog()
|
|
|
|
|
- {
|
|
|
|
|
- sysOperLogMapper.cleanOperLog();
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|