24282 2 年 前
コミット
219eab0293

+ 11 - 11
hx-kd100/src/main/java/com/fjhx/kd100/constant/KD100Status.java

@@ -6,26 +6,26 @@ package com.fjhx.kd100.constant;
 public interface KD100Status {
 
     // 未找到快递信息
-    public static final Integer STATUS_N = -1;
+    Integer STATUS_N = -1;
     // 在途
-    public static final Integer STATUS_0 = 0;
+    Integer STATUS_0 = 0;
     // 揽收
-    public static final Integer STATUS_1 = 1;
+    Integer STATUS_1 = 1;
     // 疑难
-    public static final Integer STATUS_2 = 2;
+    Integer STATUS_2 = 2;
     // 签收
-    public static final Integer STATUS_3 = 3;
+    Integer STATUS_3 = 3;
     // 退签
-    public static final Integer STATUS_4 = 4;
+    Integer STATUS_4 = 4;
     // 派件
-    public static final Integer STATUS_5 = 5;
+    Integer STATUS_5 = 5;
     // 退回
-    public static final Integer STATUS_6 = 6;
+    Integer STATUS_6 = 6;
     // 转投
-    public static final Integer STATUS_7 = 7;
+    Integer STATUS_7 = 7;
     // 清关
-    public static final Integer STATUS_8 = 8;
+    Integer STATUS_8 = 8;
     // 拒签
-    public static final Integer STATUS_14 = 14;
+    Integer STATUS_14 = 14;
 
 }

+ 0 - 2
hx-kd100/src/main/java/com/fjhx/kd100/util/KD100Result.java

@@ -26,8 +26,6 @@ public class KD100Result {
 
     /**
      * -1未找到快递信息,0在途,1揽收,2疑难,3签收,4退签,5派件,6退回,7转投,8清关,14拒签
-     *
-     * @link com.fjhx.kd100.constant.KD100Status
      */
     private Integer state;