浏览代码

云燕2次提供最新代码

15810770710@163.com 4 年之前
父节点
当前提交
71b7ad755f

+ 1 - 0
src/main/java/info/aspirecn/cloud/yysj/commons/lang/BillItemResult.java

@@ -8,6 +8,7 @@ import java.util.Set;
 public class BillItemResult {
     private String result;
     private ErrorResponse exceptionInformation;
+    private String resultMessage;
     @Data
     public static class ErrorResponse{
         private int code;//1 数据源为空,2,3不一致,有明确项的和未查到的,4位系统异常

+ 27 - 0
src/main/java/info/aspirecn/cloud/yysj/commons/lang/CommonResponseObject.java

@@ -0,0 +1,27 @@
+package info.aspirecn.cloud.yysj.commons.lang;
+
+import lombok.Data;
+
+import java.io.Serializable;
+
+/**
+ * @author xusonglin
+ * @version V1.0
+ **/
+@Data
+public class CommonResponseObject implements Serializable {
+
+    private static final long serialVersionUID = 7606811742460772263L;
+
+    private int code;
+    private int resultCode;
+    private Object resultBody;
+    private int isCharge;
+    private int feeCount;
+    private int jfFree;
+    private int jflx;
+    private String resultDesc;
+    private int ifSuccessAsyn;
+    private String asynResultBody;
+    private boolean cacheLogSign;
+}

+ 12 - 3
src/main/java/info/aspirecn/cloud/yysj/commons/lang/Constants.java

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