You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
427 B
23 lines
427 B
package com.hai.user.service;
|
|
|
|
import com.hai.entity.HighUserLoginLog;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 用户登录日志
|
|
* @className: UserLoginService
|
|
* @author: HuRui
|
|
* @date: 2022/10/25
|
|
**/
|
|
public interface UserLoginLogService {
|
|
|
|
/**
|
|
* 查询用户登录日志列表
|
|
* @param param
|
|
* @return
|
|
*/
|
|
List<HighUserLoginLog> getUserLoginLogList(Map<String, Object> param);
|
|
|
|
}
|
|
|