|
@@ -111,9 +111,10 @@ public class FaultController extends BaseController {
|
|
return faultService.listType3and30(simType);
|
|
return faultService.listType3and30(simType);
|
|
}
|
|
}
|
|
|
|
|
|
- @GetMapping("/listTypeRealGZBW/{simType}")
|
|
|
|
|
|
+ // @GetMapping("/listTypeRealGZBW/{simType}")
|
|
|
|
+ @RequestMapping(value = {"/listTypeRealGZBW/{simType}", "/listTypeRealGZBW"})
|
|
@ApiOperation("list某模拟器型号,所有的真实的[故障部位]基础数据。")
|
|
@ApiOperation("list某模拟器型号,所有的真实的[故障部位]基础数据。")
|
|
- public AjaxResult listType3(@PathVariable(value = "simType") String simType) {
|
|
|
|
|
|
+ public AjaxResult listType3(@PathVariable(value = "simType", required = false) String simType) {
|
|
return faultService.listType3Ar(simType);
|
|
return faultService.listType3Ar(simType);
|
|
}
|
|
}
|
|
|
|
|