|
|
|
@ -87,8 +87,9 @@ public class WarehouseWaybillController extends BladeController {
|
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "详情", notes = "传入warehouseWaybill") |
|
|
|
|
public R<WarehouseWaybillVO> detail(WarehouseWaybillEntity warehouseWaybill) { |
|
|
|
|
WarehouseWaybillEntity detail = warehouseWaybillService.getOne(Condition.getQueryWrapper(warehouseWaybill)); |
|
|
|
|
return R.data(WarehouseWaybillWrapper.build().entityVO(detail)); |
|
|
|
|
// WarehouseWaybillEntity detail = warehouseWaybillService.getOne(Condition.getQueryWrapper(warehouseWaybill));
|
|
|
|
|
WarehouseWaybillEntity byWaybillNo = warehouseWaybillService.findByWaybillNo(warehouseWaybill.getWaybillNo()); |
|
|
|
|
return R.data(WarehouseWaybillWrapper.build().entityVO(byWaybillNo)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -117,6 +118,7 @@ public class WarehouseWaybillController extends BladeController {
|
|
|
|
|
@ApiOperationSupport(order = 3) |
|
|
|
|
@ApiOperation(value = "分页", notes = "传入warehouseWaybill") |
|
|
|
|
public R<IPage<WarehouseWaybillVO>> page(WarehouseWaybillVO warehouseWaybill, Query query) { |
|
|
|
|
|
|
|
|
|
IPage<WarehouseWaybillVO> pages = warehouseWaybillService.selectWarehouseWaybillPage(Condition.getPage(query), warehouseWaybill); |
|
|
|
|
return R.data(pages); |
|
|
|
|
} |
|
|
|
|