Compare commits

..

No commits in common. "47e3b92bbdcf8421f521f26e4c82a7f8bb67bf10" and "5185512f3297ff7330809ffcc3dfb2de18c44ded" have entirely different histories.

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(data, SUCCESS, "操作成功");
return restResult(null, SUCCESS, "操作成功");
}
public static <T> Result<T> success (T data, String msg) {