| | |
| | | rawInsProductService.updaterawInsProduct(userId,rpId,testValue,devId); |
| | | return Result.success(); |
| | | } |
| | | |
| | | @ApiOperation(value = "更改设备") |
| | | @ApiImplicitParams(value = { |
| | | @ApiImplicitParam(name = "rpId", value = "原材料检验项目id", dataTypeClass = Integer.class, required = true), |
| | | @ApiImplicitParam(name = "DevId", value = "设备id", dataTypeClass = Integer.class,required = true) |
| | | }) |
| | | @PostMapping("/updateDevByRpId") |
| | | public Result updateDevByRpId(Integer rpId ,Integer devId) { |
| | | rawInsProductService.updateDevByRpId(rpId,devId); |
| | | return Result.success(); |
| | | } |
| | | } |
| | | |