package com.ruoyi.warehouse.controller; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.toolkit.CollectionUtils; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.ruoyi.framework.aspectj.lang.annotation.Log; import com.ruoyi.framework.aspectj.lang.enums.BusinessType; import com.ruoyi.framework.web.controller.BaseController; import com.ruoyi.framework.web.domain.AjaxResult; import com.ruoyi.warehouse.pojo.WarehouseGoodsShelves; import com.ruoyi.warehouse.service.WarehouseGoodsShelvesService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.List; @RestController @Api(tags = "商品货架") @RequestMapping("/warehouse/goodsShelves") public class WarehouseGoodsShelvesController extends BaseController { @Autowired private WarehouseGoodsShelvesService warehouseGoodsShelvesService; @GetMapping("/listById") @ApiOperation("商品货架-查询") @Log(title = "商品货架-查询", businessType = BusinessType.OTHER) public AjaxResult listById(Long warehouseId) { List list = warehouseGoodsShelvesService.list(new QueryWrapper().lambda() .eq(WarehouseGoodsShelves::getWarehouseId, warehouseId)); return AjaxResult.success(list); } @PostMapping("/add") @ApiOperation("商品货架-添加") @Log(title = "商品货架-添加", businessType = BusinessType.INSERT) public AjaxResult add(@RequestBody WarehouseGoodsShelves warehouseGoodsShelves) { return AjaxResult.success(warehouseGoodsShelvesService.add(warehouseGoodsShelves)); } @PostMapping("/update") @ApiOperation("商品货架-更新") @Log(title = "商品货架-更新", businessType = BusinessType.UPDATE) public AjaxResult update(@RequestBody WarehouseGoodsShelves warehouseGoodsShelves) { return AjaxResult.success(warehouseGoodsShelvesService.updateRowcolById(warehouseGoodsShelves)); } @DeleteMapping("/delete") @ApiOperation("商品货架-删除") @Log(title = "商品货架-删除", businessType = BusinessType.DELETE) public AjaxResult delete(@RequestBody List ids) { if(CollectionUtils.isEmpty(ids)) return AjaxResult.error("请传入要删除的ID"); return AjaxResult.success(warehouseGoodsShelvesService.deleteByIds(ids)); } }