3.2.7人车认证优化

This commit is contained in:
2023-08-28 15:42:27 +08:00
parent 9345621309
commit c39513ce13
25 changed files with 1357 additions and 114 deletions
@@ -1,10 +1,12 @@
package com.arpa.hndahesudintocctmsdriver.request;
import com.arpa.hndahesudintocctmsdriver.BuildConfig;
public class RequestConstant {
public static String TOKEN="eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MzA0MDE3OTIsInVzZXJJZCI6ODAsImlhdCI6MTYyNzcyMzM5Mn0.f9Q-UZVduW6nt1s0L-3vYsrOJJ8iuSCSlJ9uu8yIxBI";
//域名地址http://request.one-clouds.com/api https://huoyun.mzxd56.com/api http://app.dahehuoyun.com/api
public static String BASE_URL ="http://app.dahehuoyun.com/api";
public static String BASE_URL = BuildConfig.BASE_URL;
//版本更新/app/check/version
public static String VERSION ="/app/check/version";
//全部代码
@@ -133,6 +135,9 @@ public class RequestConstant {
//车牌号
private static final String PLATE_LICENSE="/common/ocr/plateLicense";
//车牌号2
private static final String PLATE_LICENSE2="/common/aliyun/ocr/RecognizeCarNumber";
//添加挂车
private static final String SAVE_DRAW_CAR="/app/carDriver/saveDrawCar";
//提现记录
@@ -390,6 +395,10 @@ public class RequestConstant {
return BASE_URL+PLATE_LICENSE;
}
public static String getPlateLicense2() {
return BASE_URL+PLATE_LICENSE2;
}
public static String getGetImage() {
return BASE_URL+GET_IMAGE;
}