package com.thhy.usercore.modules.sys.syslog.service;
|
|
import com.thhy.usercore.modules.sys.syslog.entity.LogDto;
|
import com.thhy.usercore.modules.sys.syslog.entity.LogVo;
|
import com.thhy.usercore.modules.sys.syslog.entity.SysLogs;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* <p>
|
* 服务类
|
* </p>
|
*
|
* @author zhang_xiao_bo
|
* @since 2022-04-01
|
*/
|
public interface ISysLogsService {
|
|
SysLogs get(Serializable id);
|
|
List<LogVo> findList(LogDto logDto);
|
|
//int insert(SysLogs sysLogs);
|
|
int update(SysLogs sysLogs);
|
|
int deletelogic(Serializable id);
|
|
int delete(Serializable id);
|
}
|