4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.system.log.service;
 
 
import com.app.base.data.ApiResponseResult;
import com.system.log.entity.SysLog;
import org.springframework.data.domain.PageRequest;
 
public interface SysLogService {
 
    public ApiResponseResult add(SysLog sysLog) throws Exception;
 
    public ApiResponseResult getlist(String keyword, PageRequest pageRequest) throws Exception;
    
    public ApiResponseResult debug(String method,String methodName) ;
    
    public ApiResponseResult success(String method,String methodName,Object param) ;
    
    public ApiResponseResult error(String method,String methodName,Object param) ;
    
    public ApiResponseResult login(String method,String methodName,String param) ;
 
}