| | |
| | | * @author zhoush |
| | | * @since 2024-04-07 |
| | | */ |
| | | @Api(description = "识别显示") |
| | | @Api(tags = "识别显示") |
| | | @RestController |
| | | @RequestMapping("/taskCache") |
| | | public class TaskCacheController { |
| | |
| | | @Autowired |
| | | private TaskCacheService taskCacheService; |
| | | |
| | | @ApiOperation("查询钢化版图信息-根据 工程号 参数(工程号)") |
| | | @PostMapping("/temperingTerritory") |
| | | @ResponseBody |
| | | public Result temperingTerritory(String current) { |
| | | List<Map<String, Object>> h = edgStorageCageDetailsService.selectTemperingTerritory(current); |
| | | return Result.build(200, "成功", h); |
| | | } |
| | | |
| | | @ApiOperation("查询切割版图信息-根据 工程号 参数(工程号)") |
| | | @PostMapping("/cutTerritory") |
| | | @ResponseBody |