IntelligentRecognition/ah-jjsp-service/.svn/pristine/e5/e59ddcd27b39ad6599b9abb3a82...

29 lines
683 B
Plaintext
Raw Normal View History

2024-05-24 16:09:40 +08:00
package com.sercurityControl.proteam.mapper;
import com.sercurityControl.proteam.domain.LoginLogBean;
import com.sercurityControl.proteam.domain.OperateLogBean;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* 日志接口服务
*/
@Repository
public interface LogsMapper {
/**
* 查询登陆日志
* @param currentDay
* @return
*/
List<LoginLogBean> getLoginLogData(@Param("currentDay") String currentDay);
/**
* 查询业务日志
* @param currentDay
* @return
*/
List<OperateLogBean> getOperateLogData(@Param("currentDay")String currentDay);
}