1、调整导入运单
2、调整对账
This commit is contained in:
@@ -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)));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user