| | |
| | | import io.netty.util.internal.StringUtil; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | @Slf4j |
| | | @RestController |
| | |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 容器流动通知 |
| | | * @param code 容器编码 |
| | | * @return |
| | | */ |
| | | @GetMapping("/container/converyor/{code}") |
| | | public R containerConveyor(@PathVariable String code) { |
| | | if (StringUtil.isNullOrEmpty(code)) { |
| | | return R.error("容器编码不能为空!!!"); |
| | | } |
| | | |
| | | return wcsApiService.containerConveryor(code); |
| | | } |
| | | |
| | | |
| | | } |