all
huanghongfa
2021-02-20 50c0239af826da55e07f2d4c7508c1ae5e3b6031
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();
    }
}