|
@@ -153,9 +153,9 @@ public class MajorController extends BaseController {
|
|
|
/**
|
|
|
* 大中型产品详情
|
|
|
*/
|
|
|
- @GetMapping("/{id}/{productionNo}")
|
|
|
- public RestResponse<MajorVO> productionDetail(@PathVariable Long id,@PathVariable("productionNo") String productionNo) throws InterruptedException {
|
|
|
- MajorVO xMajor =majorService.productionDetail(id,productionNo);
|
|
|
+ @GetMapping("/{id}/{productionNo}/{production}")
|
|
|
+ public RestResponse<MajorVO> productionDetail(@PathVariable Long id,@PathVariable("productionNo") String productionNo,@PathVariable("production") String production) throws InterruptedException {
|
|
|
+ MajorVO xMajor =majorService.productionDetail(id,productionNo,production);
|
|
|
return RestResponse.data(xMajor);
|
|
|
}
|
|
|
}
|