add isError and isSuccess method

This commit is contained in:
RuoYi 2022-09-12 17:14:57 +08:00
parent 51866eceb7
commit 69ab26f6f4

View File

@ -102,4 +102,14 @@ public class R<T> implements Serializable
{
this.data = data;
}
public Boolean isError()
{
return !isSuccess();
}
public Boolean isSuccess()
{
return R.SUCCESS == getCode();
}
}