mirror of https://gitee.com/y_project/RuoYi.git
R isError and isSuccess static
parent
db3e571af0
commit
b362e58646
|
@ -102,13 +102,13 @@ public class R<T> implements Serializable
|
|||
this.data = data;
|
||||
}
|
||||
|
||||
public Boolean isError()
|
||||
public static <T> Boolean isError(R<T> ret)
|
||||
{
|
||||
return !isSuccess();
|
||||
return !isSuccess(ret);
|
||||
}
|
||||
|
||||
public Boolean isSuccess()
|
||||
public static <T> Boolean isSuccess(R<T> ret)
|
||||
{
|
||||
return R.SUCCESS == getCode();
|
||||
return R.SUCCESS == ret.getCode();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue