package com.hxzk.gps.service.System;
|
|
|
import com.hxzk.gps.controller.System.TableSearchResult.TableSearchResult;
|
import com.hxzk.gps.entity.System.TbSystemOperationLog;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.hxzk.gps.result.ResultTable;
|
import org.springframework.stereotype.Service;
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
/**
|
* <p>
|
* 服务类
|
* </p>
|
*
|
* @author YuZhiTong
|
* @since 2025-05-12
|
*/
|
public interface TbSystemOperationLogService extends IService<TbSystemOperationLog> {
|
/*
|
* 添加操作日志
|
* */
|
public Integer add(TbSystemOperationLog systemOperationLog);
|
|
/*
|
* 操作日志列表查询接口
|
* @param TableSearchResult
|
* @return ResultTable
|
* */
|
ResultTable FindSystemLogInfo(@RequestBody TableSearchResult TableSearchResult);
|
|
}
|