infrasys00
2020-12-22 c49340174f646c4de19fcf2bbf52fcbc154ef76f
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/R.java
@@ -91,9 +91,10 @@
     * 请求是否成功
     * @return
     */
    public boolean isOk(){
        return this.code==Constants.SUCCESS.intValue();
    public static boolean isOk(R r){
        return r.code==Constants.SUCCESS.intValue();
    }
}