| | |
| | | import com.zy.acs.manager.manager.entity.Sta; |
| | | import com.zy.acs.manager.manager.entity.Task; |
| | | import com.zy.acs.manager.manager.enums.StatusType; |
| | | import com.zy.acs.manager.manager.service.SegmentService; |
| | | import com.zy.acs.manager.manager.service.StaService; |
| | | import com.zy.acs.manager.manager.service.TaskService; |
| | | import io.swagger.annotations.Api; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | |
| | | @Autowired |
| | | private StaService staService; |
| | | |
| | | @Autowired |
| | | private TaskService taskService; |
| | | |
| | | @Autowired |
| | | private SegmentService segmentService; |
| | | |
| | | @PostMapping("/station/convey") |
| | | @IntegrationAuth(name = NamespaceType.RCS_STA_QUERY) |
| | |
| | | } |
| | | |
| | | |
| | | @PostMapping("/station/checkTakeComplete") |
| | | @IntegrationAuth(name = NamespaceType.RCS_STA_QUERY) |
| | | public R checkTakeComplete(@RequestBody ConveyorQueryParam param) { |
| | | |
| | | String staNo = param.getStaNo(); |
| | | String seqNum = param.getSeqNum(); |
| | | taskService.() |
| | | |
| | | return R.ok().add(resultList); |
| | | } |
| | | } |