Uses of Record Class
com.v1rex.liftnexus.transportorder.dto.TransportOrderResponse
Packages that use TransportOrderResponse
Package
Description
-
Uses of TransportOrderResponse in com.v1rex.liftnexus.transportorder.controller
Methods in com.v1rex.liftnexus.transportorder.controller that return types with arguments of type TransportOrderResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<TransportOrderResponse> TransportOrderController.createOrder(@Valid TransportOrderRequest request) org.springframework.http.ResponseEntity<TransportOrderResponse> TransportOrderController.getOrderById(Long id) org.springframework.http.ResponseEntity<org.springframework.data.domain.Page<TransportOrderResponse>> TransportOrderController.searchOrders(TransportOrderStatus status, @Min(1L) Integer minWeight, org.springframework.data.domain.Pageable pageable) org.springframework.http.ResponseEntity<TransportOrderResponse> TransportOrderController.updateOrderStatus(Long id, @Valid TransportOrderStatusUpdateRequest request) -
Uses of TransportOrderResponse in com.v1rex.liftnexus.transportorder.mapper
Methods in com.v1rex.liftnexus.transportorder.mapper that return TransportOrderResponse -
Uses of TransportOrderResponse in com.v1rex.liftnexus.transportorder.service
Methods in com.v1rex.liftnexus.transportorder.service that return TransportOrderResponseModifier and TypeMethodDescriptionTransportOrderService.createTransportOrder(TransportOrderRequest request) Creates a new transport order that moves a load unit from a source storage bin to a destination storage bin.Looks up a transport order by its ID and returns the response DTO.TransportOrderService.updateOrderStatus(Long id, TransportOrderStatusUpdateRequest request) Advances (or changes) the status of an existing transport order.Methods in com.v1rex.liftnexus.transportorder.service that return types with arguments of type TransportOrderResponseModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<TransportOrderResponse> TransportOrderService.searchOrders(TransportOrderStatus status, Integer minWeight, org.springframework.data.domain.Pageable pageable) Searches for transport orders with optional filters and pagination.