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);
|
}
|