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 getLoginLogData(@Param("currentDay") String currentDay); /** * 查询业务日志 * @param currentDay * @return */ List getOperateLogData(@Param("currentDay")String currentDay); }