refactor(Result.java): total类型由Long→long值

This commit is contained in:
郝先瑞 2022-02-16 23:48:56 +08:00
parent 61febddb90
commit d6bc56e7a4

View File

@ -21,7 +21,7 @@ public class Result<T> implements Serializable {
private String msg;
private Long total;
private long total;
public static <T> Result<T> success() {
return success(null);