mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-13 02:57:13 +08:00
style: 优化部分代码格式及注释
This commit is contained in:
@@ -95,7 +95,7 @@ public class LogDO implements Serializable {
|
||||
private Long elapsedTime;
|
||||
|
||||
/**
|
||||
* 操作状态(1:成功,2:失败)
|
||||
* 操作状态
|
||||
*/
|
||||
private LogStatusEnum status;
|
||||
|
||||
|
@@ -44,9 +44,9 @@ public class LoginLogQuery implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 登录状态(1:成功,2:失败)
|
||||
* 登录状态
|
||||
*/
|
||||
@Schema(description = "登录状态(1:成功,2:失败)", example = "1")
|
||||
@Schema(description = "登录状态(1:成功;2:失败)", example = "1")
|
||||
@Query
|
||||
private Integer status;
|
||||
|
||||
|
@@ -51,9 +51,9 @@ public class OperationLogQuery implements Serializable {
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 操作状态(1:成功,2:失败)
|
||||
* 操作状态
|
||||
*/
|
||||
@Schema(description = "操作状态(1:成功,2:失败)", example = "1")
|
||||
@Schema(description = "操作状态(1:成功;2:失败)", example = "1")
|
||||
@Query
|
||||
private Integer status;
|
||||
|
||||
|
@@ -41,9 +41,9 @@ public class LoginLogVO extends LogVO {
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 登录状态(1:成功,2:失败)
|
||||
* 登录状态
|
||||
*/
|
||||
@Schema(description = "登录状态(1:成功,2:失败)", type = "Integer", allowableValues = {"1", "2"}, example = "1")
|
||||
@Schema(description = "登录状态(1:成功;2:失败)", type = "Integer", allowableValues = {"1", "2"}, example = "1")
|
||||
private LogStatusEnum status;
|
||||
|
||||
/**
|
||||
|
@@ -47,9 +47,9 @@ public class OperationLogVO extends LogVO {
|
||||
private String module;
|
||||
|
||||
/**
|
||||
* 操作状态(1成功 2失败)
|
||||
* 操作状态
|
||||
*/
|
||||
@Schema(description = "操作状态(1:成功,2:失败)", type = "Integer", allowableValues = {"1", "2"}, example = "1")
|
||||
@Schema(description = "操作状态(1:成功;2:失败)", type = "Integer", allowableValues = {"1", "2"}, example = "1")
|
||||
private LogStatusEnum status;
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user