소스 검색

配置小程序用户隐私保护指引

xujunwei 3 년 전
부모
커밋
5fdbcc7f8d
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 4
      framework-common/src/main/java/com/mrxu/framework/common/xcx/bean/InterfaceList.java

+ 1 - 4
framework-common/src/main/java/com/mrxu/framework/common/xcx/bean/InterfaceList.java

@@ -49,9 +49,6 @@ public class InterfaceList extends WxResult {
             if(status.equals(4)) {
                 return "申请失败";
             }
-            if(status.equals(1)) {
-                return "待申请开通";
-            }
             if(status.equals(5)) {
                 return "已开通";
             }
@@ -60,7 +57,7 @@ public class InterfaceList extends WxResult {
 
         public String getApplyTime() {
             if(apply_time == null) {
-                return "未申请";
+                return "-";
             }
             return DateFunc.getTimeStr(new Date(apply_time*1000l));
         }