package com.ruoyi.approve.service;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ruoyi.approve.bean.dto.LogReportDto;
|
import com.ruoyi.approve.pojo.LogReport;
|
|
/**
|
* <p>
|
* 日志表 服务类
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-05-08 01:51:13
|
*/
|
public interface LogReportService extends IService<LogReport> {
|
|
IPage<LogReportDto> listPage(Page page, LogReportDto sysLogReport);
|
|
Boolean add(LogReportDto sysLogReport);
|
|
Boolean updateSysLogReportDto(LogReportDto sysLogReport);
|
|
void pushLogReport(LogReportDto sysLogReportDto);
|
}
|