3
13693261870
2022-09-16 63ba114e70e380442fcbed4a5157ee52c9491216
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.landtool.lanbase.modules.log.service;
 
import com.landtool.lanbase.modules.log.entity.LogAction;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author lanbase
 * @Description: TODO(系统模块操作日志表)
 * @date 2018-01-16 09:18:41
 */
public interface LogActionService {
    
    LogAction queryObject(Long actionid);
    
    List<LogAction> queryList(Map<String, Object> map);
    
    int queryTotal(Map<String, Object> map);
    
 
    
    void save(LogAction action);
    
    void update(LogAction action);
    
    void delete(Long actionid);
    
    void deleteBatch(Long[] actionids);
    
    Long queryUserId(String UserName);
    
    void addAction(Long userid,Long appid,String largemodel,
                   String smallmodel,String requesturl,String requestip,
                   String remark,String actiontype,Integer resourceid,String title);
    
    List<String> queryActionType();
 
    List<Map<String, Object>> queryAnalyseResourceAction(Map<String,Object> parm);
}