1、调整导入运单

2、调整对账
This commit is contained in:
2026-09-09 14:43:26 +08:00
parent 0ce701ab90
commit 63af35a333
13 changed files with 812 additions and 61 deletions
@@ -71,6 +71,7 @@ public interface ISysClient {
String PARAM_VALUE = API_PREFIX + "/param-value";
String REGION = API_PREFIX + "/region";
String FEE_ITEMS = API_PREFIX + "/fee-items";
String CARGO_TYPES = API_PREFIX + "/cargo-types";
/**
* 获取菜单
@@ -301,4 +302,7 @@ public interface ISysClient {
@GetMapping(FEE_ITEMS)
R<List<FeeItem>> getFeeItems();
@GetMapping(CARGO_TYPES)
R<List<CargoType>> getCargoTypes();
}
@@ -164,5 +164,9 @@ public class ISysClientFallback implements ISysClient {
return R.fail("获取数据失败");
}
@Override
public R<List<CargoType>> getCargoTypes() {
return R.fail("获取数据失败");
}
}