29 lines
683 B
Plaintext
29 lines
683 B
Plaintext
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);
|
|
}
|