|
@@ -58,7 +58,8 @@ public class Constants {
|
|
|
public static String bill_driver_name="driverName";
|
|
|
public static String bill_driver_License="drivingLicense";
|
|
|
public static String bill_shipping_note_number = "shippingNoteNumber";
|
|
|
-
|
|
|
+ public static String bill_receipt_country_subdivision_code = "receiptCountrySubdivisionCode";
|
|
|
+ public static String bill_loading_country_subdivision_code = "loadingCountrySubdivisionCode";
|
|
|
public static String req_id="reqID";
|
|
|
public static String appe_id_code="appeIdCode";
|
|
|
public static String eid_voucher = "eidVoucher";
|
|
@@ -82,6 +83,7 @@ public class Constants {
|
|
|
|
|
|
public static String errorInfo="系统异常,核验失败";
|
|
|
public static String weightOverInfo="车辆超载";
|
|
|
+ public static String DATA_NULL = "数据源为空";
|
|
|
//车辆行驶证接口参数
|
|
|
public static String clxszyz_carNumber="carNumber";
|
|
|
public static String clxszyz_carType="carType";
|
|
@@ -241,7 +243,8 @@ public class Constants {
|
|
|
INCONSISTENT_DETAIL(2),
|
|
|
INCONSISTENT_ALL(3),
|
|
|
NULL(1),
|
|
|
- WEIGTHOVER(5);
|
|
|
+ WEIGTHOVER(5),
|
|
|
+ DATA_NULL(6);
|
|
|
private int errorCode;
|
|
|
ErrorCode(int errorCode){
|
|
|
this.errorCode=errorCode;
|
|
@@ -251,7 +254,13 @@ public class Constants {
|
|
|
}
|
|
|
|
|
|
}
|
|
|
-
|
|
|
+ //装货,卸货
|
|
|
+ public static String zxh_vehicleNumber = "plateNumber";
|
|
|
+ public static String zxh_vehiclePlateColorCode = "plateColor";
|
|
|
+ public static String zxh_receiptCountrySubdivisionCode = "receiptCountrySubdivisionCode";
|
|
|
+ public static String zxh_goodsReceiptDateTime = "endTime";
|
|
|
+ public static String zxh_loadingCountrySubdivisionCode = "loadingCountrySubdivisionCode";
|
|
|
+ public static String zxh_despatchActualDateTime = "startTime";
|
|
|
}
|
|
|
|
|
|
|