|
@@ -1,13 +1,10 @@
|
|
|
package com.abi.qms.platform.controller.console;
|
|
|
|
|
|
import com.abi.platform.Base.BaseResponse;
|
|
|
-import com.abi.qms.platform.dto.req.GetBoxCodeReq;
|
|
|
+import com.abi.qms.platform.dto.req.GetFlowInfoReq;
|
|
|
import com.abi.qms.platform.dto.req.GetInvisibleCodeReq;
|
|
|
-import com.abi.qms.platform.dto.req.GetStackCodeReq;
|
|
|
-import com.abi.qms.platform.dto.res.GetBoxCodeRes;
|
|
|
import com.abi.qms.platform.dto.res.GetFlowInfoRes;
|
|
|
import com.abi.qms.platform.dto.res.GetInvisibleCodeRes;
|
|
|
-import com.abi.qms.platform.dto.res.GetStackCodeRes;
|
|
|
import com.abi.qms.platform.service.FlowQueryService;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
@@ -34,8 +31,8 @@ public class FlowQueryController {
|
|
|
|
|
|
@ApiOperation("箱码垛码查询")
|
|
|
@GetMapping()
|
|
|
- public BaseResponse<GetFlowInfoRes> boxCode (@Validated GetBoxCodeReq getBoxCodeReq) {
|
|
|
- GetFlowInfoRes res = flowQueryService.queryFlow(getBoxCodeReq);
|
|
|
+ public BaseResponse<GetFlowInfoRes> flowQuery (@Validated GetFlowInfoReq getFlowInfoReq) {
|
|
|
+ GetFlowInfoRes res = flowQueryService.queryFlow(getFlowInfoReq);
|
|
|
return BaseResponse.create(res);
|
|
|
}
|
|
|
|