mirror of https://gitee.com/stylefeng/roses
【7.0.2】更新注释
parent
e24b267357
commit
9228f60b07
|
@ -6,6 +6,13 @@ import lombok.EqualsAndHashCode;
|
|||
|
||||
import java.util.Date;
|
||||
|
||||
|
||||
/**
|
||||
* 登录日志的dto
|
||||
*
|
||||
* @author fengshuonan
|
||||
* @date 2021/3/30 20:51
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class SysLoginLogDto extends BaseRequest {
|
||||
|
@ -59,4 +66,5 @@ public class SysLoginLogDto extends BaseRequest {
|
|||
* 结束时间
|
||||
*/
|
||||
private String endTime;
|
||||
|
||||
}
|
||||
|
|
|
@ -39,6 +39,12 @@ import org.apache.ibatis.annotations.Param;
|
|||
*/
|
||||
public interface SysLoginLogMapper extends BaseMapper<SysLoginLog> {
|
||||
|
||||
/**
|
||||
* 分页查询登录日志
|
||||
*
|
||||
* @author fengshuonan
|
||||
* @date 2021/3/30 20:52
|
||||
*/
|
||||
Page<SysLoginLogDto> customFindPage(@Param("page") Page page, @Param("sysLoginLogRequest") SysLoginLogRequest sysLoginLogRequest);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue