| | |
| | | public Response getAttachByMaterialId(@RequestParam int materialId){ |
| | | return service.getAttachByMaterialId(materialId); |
| | | } |
| | | @ApiOperation(value = "根据物料id修改锁定的附件以及原因",notes = "9.3修改后使用") |
| | | @GetMapping("updateAttachRecord") |
| | | public Response updateAttachRecord(@RequestParam int materialId,@RequestParam String lockedFileNames,@RequestParam(required = false) String lockRecords){ |
| | | return service.updateAttachRecord(materialId,lockedFileNames,lockRecords); |
| | | } |
| | | |
| | | @ApiOperation(value = "根据物料型号('-','_'之前的部分)查询物料的历史版本",notes = "9.3修改后使用") |
| | | @GetMapping("getMaterialVersion") |