新增:新增系统监控/在线用户功能,并优化部分注释规范

This commit is contained in:
2023-01-21 14:15:00 +08:00
parent 185b79320f
commit 3116fd3eae
24 changed files with 640 additions and 48 deletions

View File

@@ -39,7 +39,7 @@ public class SysLog implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 日志ID
* 日志 ID
*/
@TableId
private Long logId;

View File

@@ -0,0 +1,52 @@
/*
* Copyright (c) 2022-present Charles7c Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package top.charles7c.cnadmin.monitor.model.query;
import java.util.Date;
import java.util.List;
import lombok.Data;
import io.swagger.v3.oas.annotations.media.Schema;
import org.springdoc.api.annotations.ParameterObject;
import org.springframework.format.annotation.DateTimeFormat;
/**
* 在线用户查询条件
*
* @author Charles7c
* @since 2023/1/20 23:07
*/
@Data
@ParameterObject
@Schema(description = "在线用户查询条件")
public class OnlineUserQuery {
/**
* 用户昵称
*/
@Schema(description = "用户昵称")
private String nickname;
/**
* 登录时间
*/
@Schema(description = "登录时间")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private List<Date> loginTime;
}

View File

@@ -38,9 +38,9 @@ public class LoginLogVO extends LogVO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 日志ID
* 日志 ID
*/
@Schema(description = "日志ID")
@Schema(description = "日志 ID")
private Long logId;
/**
@@ -56,9 +56,9 @@ public class LoginLogVO extends LogVO implements Serializable {
private LogStatusEnum status;
/**
* 登录IP
* 登录 IP
*/
@Schema(description = "登录IP")
@Schema(description = "登录 IP")
private String clientIp;
/**

View File

@@ -0,0 +1,79 @@
/*
* Copyright (c) 2022-present Charles7c Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package top.charles7c.cnadmin.monitor.model.vo;
import java.io.Serializable;
import java.time.LocalDateTime;
import lombok.Data;
import io.swagger.v3.oas.annotations.media.Schema;
/**
* 在线用户信息
*
* @author Charles7c
* @since 2023/1/20 21:54
*/
@Data
@Schema(description = "在线用户信息")
public class OnlineUserVO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 令牌
*/
@Schema(description = "令牌")
private String token;
/**
* 用户名
*/
@Schema(description = "用户名")
private String username;
/**
* 昵称
*/
@Schema(description = "昵称")
private String nickname;
/**
* 登录 IP
*/
@Schema(description = "登录 IP")
private String clientIp;
/**
* 登录地点
*/
@Schema(description = "登录地点")
private String location;
/**
* 浏览器
*/
@Schema(description = "浏览器")
private String browser;
/**
* 登录时间
*/
@Schema(description = "登录时间")
private LocalDateTime loginTime;
}

View File

@@ -38,9 +38,9 @@ public class OperationLogVO extends LogVO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 日志ID
* 日志 ID
*/
@Schema(description = "日志ID")
@Schema(description = "日志 ID")
private Long logId;
/**

View File

@@ -36,9 +36,9 @@ public class SystemLogDetailVO extends LogVO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 日志ID
* 日志 ID
*/
@Schema(description = "日志ID")
@Schema(description = "日志 ID")
private Long logId;
/**

View File

@@ -36,9 +36,9 @@ public class SystemLogVO extends LogVO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 日志ID
* 日志 ID
*/
@Schema(description = "日志ID")
@Schema(description = "日志 ID")
private Long logId;
/**

View File

@@ -71,7 +71,7 @@ public interface LogService {
* 查看系统日志详情
*
* @param logId
* 日志ID
* 日志 ID
* @return 系统日志详情
*/
SystemLogDetailVO detail(Long logId);