| | |
| | | package com.mes.shelfrack.controller;
|
| | |
|
| | | import com.mes.shelfrack.entity.request.RawUsageAndShelfRack;
|
| | | import com.mes.utils.Result;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.http.ResponseEntity;
|
| | |
| | | @ApiResponses({@ApiResponse(code = 200, message = "查询成功")})
|
| | | @GetMapping("/findshelfrack")
|
| | | public Result findshelfrack() {
|
| | | List<Map<String, Object>> result = shelfRackService.selectshelf_rack();
|
| | | List<RawUsageAndShelfRack> result = shelfRackService.selectshelf_rack();
|
| | | return Result.success(result);
|
| | | }
|
| | |
|