修改result

master
张腾 2024-08-04 14:32:35 +08:00
parent 7e419ccc78
commit ddccf9a68b
1 changed files with 2 additions and 2 deletions

View File

@ -37,10 +37,10 @@ public class Result<T> implements Serializable {
private static final long serialVersionUID = 1L;
@Schema(name = "code",description = "系统返回状态码:200表示请求成功,其他请见每个接口")
@Schema(defaultValue = "200",type = "Integer",description = "系统返回状态码:200表示请求成功,其他请见每个接口")
private int code;
@Schema(description = "系统返回状态码相应的信息")
@Schema(defaultValue = "操作成功",type = "String",description = "系统返回状态码相应的信息")
private String msg;
@Schema(description = "返回数据")