|
@@ -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;
|
|
|
|
|
|
}
|