style: 优化部分代码格式及注释

This commit is contained in:
2023-10-10 22:37:24 +08:00
parent 698a7251b7
commit 3a176ac5ef
36 changed files with 220 additions and 220 deletions

View File

@@ -95,7 +95,7 @@ public class LogDO implements Serializable {
private Long elapsedTime;
/**
* 操作状态1成功2失败
* 操作状态
*/
private LogStatusEnum status;

View File

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

View File

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

View File

@@ -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;
/**

View File

@@ -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;
/**