| | |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.Objects; |
| | | |
| | |
| | | * 获取机台及对应工位冻结情况 |
| | | * @author Ryan |
| | | * @date 2026/3/20 11:06 |
| | | * @param devNo 机台号,不传则查询全部 |
| | | * @return com.core.common.R |
| | | */ |
| | | // @ManagerAuth |
| | | @ApiOperation("获取机台及对应工位冻结情况") |
| | | @GetMapping("/work/freeze/status") |
| | | public R getDeviceFreezeStatus() { |
| | | return hmesApiService.getDeviceFreezeStatus(); |
| | | public R getDeviceFreezeStatus(@RequestParam(required = false) String devNo) { |
| | | return hmesApiService.getDeviceFreezeStatus(devNo); |
| | | } |
| | | |
| | | /** |