| | |
| | | public class WarehouseGoodsShelvesController extends BaseController { |
| | | @Autowired |
| | | private WarehouseGoodsShelvesService warehouseGoodsShelvesService; |
| | | @GetMapping("/listPage") |
| | | @ApiOperation("商品货架-分页查询") |
| | | @Log(title = "商品货架-分页查询", businessType = BusinessType.OTHER) |
| | | public AjaxResult listPage(Page page, WarehouseGoodsShelves warehouseGoodsShelves) { |
| | | IPage<WarehouseGoodsShelves> listPage = warehouseGoodsShelvesService.listPage(page, warehouseGoodsShelves); |
| | | return AjaxResult.success(listPage); |
| | | } |
| | | |
| | | @GetMapping("/listById") |
| | | @ApiOperation("商品货架-查询") |