| | |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "查看该版本下我们要做的项目要求") |
| | | @ApiImplicitParams(value = { |
| | | @ApiImplicitParam(name = "name", value = "产品名称", dataTypeClass = String.class, required = true), |
| | | @ApiImplicitParam(name = "mcode", value = "产品编号", dataTypeClass = String.class, required = true), |
| | | @ApiImplicitParam(name = "specifications", value = "规格型号", dataTypeClass = String.class, required = true), |
| | | @ApiImplicitParam(name = "version", value = "版本(默认最新版本)", dataTypeClass = Integer.class,required = true ), |
| | | }) |
| | | @GetMapping("/lookProByVer") |
| | | @AuthHandler(type = InterfaceType.SELECT,menuId = MenuEnums.reportForInspection,isAdd = true) |
| | | public Result lookProByVer(String name, String mcode, String specifications,Integer version) { |
| | | return Result.success(inspectionService.lookProByVer(name, mcode, specifications,version,null)); |
| | | } |
| | | |
| | | |
| | | } |