【7.0.2】更新注释

pull/6/head
fengshuonan 2021-03-30 20:53:04 +08:00
parent e24b267357
commit 9228f60b07
2 changed files with 14 additions and 0 deletions

View File

@ -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;
}

View File

@ -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);
}