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("获取数据失败");
}
}
@@ -8,6 +8,7 @@ import org.springblade.transport.pojo.entity.TransportReconciliation;
import org.springblade.transport.pojo.entity.TransportReconciliationChangeRecord;
import org.springblade.transport.pojo.entity.TransportReconciliationExternal;
import org.springblade.transport.pojo.entity.TransportReconciliationInternal;
import org.springblade.transport.pojo.entity.FormalSettlementSummaryFee;
import java.io.Serial;
import java.util.List;
@@ -25,5 +26,6 @@ public class TransportReconciliationVO extends TransportReconciliation {
@TableField(exist = false) private String matchStatusName;
@TableField(exist = false) private List<TransportReconciliationInternal> internalDetails;
@TableField(exist = false) private List<TransportReconciliationExternal> externalDetails;
@TableField(exist = false) private List<FormalSettlementSummaryFee> feeSummary;
@TableField(exist = false) private List<TransportReconciliationChangeRecord> changeRecords;
}