| | |
| | | import org.jeecg.common.system.query.QueryGenerator; |
| | | import org.jeecg.common.util.oConvertUtils; |
| | | import org.jeecg.modules.tms.entity.GoodsShelves; |
| | | import org.jeecg.modules.tms.entity.vo.DictVo; |
| | | import org.jeecg.modules.tms.service.IGoodsShelvesService; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | |
| | | IPage<GoodsShelves> pageList = goodsShelvesService.queryPageList(page, parameterMap); |
| | | return Result.OK(pageList); |
| | | } |
| | | |
| | | @ApiOperation(value="tms_goods_shelves-通过仓库id查询货架字典数据", notes="tms_goods_shelves-通过仓库id查询货架字典数据") |
| | | @GetMapping(value = "queryGoodsShelvesDictList") |
| | | public Result<List<DictVo>> queryGoodsShelvesDictList(@RequestParam("warehouseId") String warehouseId) { |
| | | List<DictVo> list = goodsShelvesService.queryGoodsShelvesDictList(warehouseId); |
| | | return Result.OK(list); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value="tms_goods_shelves-通过仓库id、货架编号查询货架层数字典数据", notes="tms_goods_shelves-通过仓库id、货架编号查询货架层数字典数据") |
| | | @GetMapping(value = "queryGoodsShelvesStoreyDictList") |
| | | public Result<List<DictVo>> queryGoodsShelvesStoreyDictList(@RequestParam("warehouseId") String warehouseId, |
| | | @RequestParam("shelfNumber") String shelfNumber) { |
| | | List<DictVo> list = goodsShelvesService.queryGoodsShelvesStoreyDictList(warehouseId, shelfNumber); |
| | | return Result.OK(list); |
| | | } |
| | | |
| | | /** |
| | | * 添加 |