新增系统管理员岗位
This commit is contained in:
@@ -11,13 +11,13 @@ import lombok.NoArgsConstructor;
|
||||
@Schema(description = "统一返回结果")
|
||||
public class Result<T> {
|
||||
|
||||
@Schema(description = "业务状态码")
|
||||
@Schema(description = "业务状态码", example = "0")
|
||||
private Integer code;
|
||||
|
||||
@Schema(description = "返回消息")
|
||||
@Schema(description = "返回消息", example = "success")
|
||||
private String message;
|
||||
|
||||
@Schema(description = "返回数据")
|
||||
@Schema(description = "返回数据", example = "{}")
|
||||
private T data;
|
||||
|
||||
public static <T> Result<T> success() {
|
||||
|
||||
Reference in New Issue
Block a user