Compare commits

...

2 Commits

1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public class Result<T> implements Serializable {
}
public static <T> Result<T> success (T data) {
return restResult(null, SUCCESS, "操作成功");
return restResult(data, SUCCESS, "操作成功");
}
public static <T> Result<T> success (T data, String msg) {