| | |
| | | import org.jeecg.common.system.query.QueryGenerator; |
| | | import org.jeecg.common.util.oConvertUtils; |
| | | import org.jeecg.modules.tms.entity.Warehouse; |
| | | import org.jeecg.modules.tms.entity.vo.DictVo; |
| | | import org.jeecg.modules.tms.service.IWarehouseService; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | |
| | | return Result.OK(pageList); |
| | | } |
| | | |
| | | @ApiOperation(value="tms_warehouse-加载字典数据", notes="tms_warehouse-加载字典数据") |
| | | @GetMapping(value = "/queryWarehouseDictList") |
| | | public Result<List<DictVo>> queryWarehouseDictList() { |
| | | List<DictVo> dictVoList = warehouseService.queryWarehouseDictList(); |
| | | return Result.OK(dictVoList); |
| | | } |
| | | |
| | | @ApiOperation(value="tms_warehouse-加载树形结构数据", notes="tms_warehouse-加载树形结构数据") |
| | | @GetMapping(value = "/loadTree") |
| | | public Result<?> loadTree() { |