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
@@ -65,6 +65,7 @@ public class SysClient implements ISysClient {
private final IRegionService regionService;
private final IFeeItemService feeItemService;
private final ICargoTypeService cargoTypeService;
@Override
@GetMapping(MENU)
@@ -212,5 +213,12 @@ public class SysClient implements ISysClient {
.orderByAsc(FeeItem::getFeeCategory, FeeItem::getName)));
}
@Override
@GetMapping(CARGO_TYPES)
public R<List<CargoType>> getCargoTypes() {
return R.data(cargoTypeService.list(Wrappers.<CargoType>lambdaQuery()
.eq(CargoType::getIsDeleted, 0)
.orderByAsc(CargoType::getCargoCode)));
}
}