package com.thhy.usercore.modules.sys.syslog.mapper;
|
|
import com.thhy.general.entity.SysLogVo;
|
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 com.thhy.usercore.modules.sys.syslog.entity.UrlInfo;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* <p>
|
* Mapper 接口
|
* </p>
|
*
|
* @author zhang_xiao_bo
|
* @since 2022-04-01
|
*/
|
@Component
|
public interface SysLogsMapper {
|
|
SysLogs queryById(Serializable id);
|
|
Integer queryVersionById(Serializable id);
|
|
List<LogVo> findList(LogDto logDto);
|
|
List<SysLogs> findAll();
|
|
void insert(SysLogVo sysLogVo);
|
|
int update(SysLogs syslogs);
|
|
int deletelogic(Serializable id);
|
|
int deleteById(Serializable id);
|
|
UrlInfo queryDetailByUrl(String urlPath);
|
}
|