|
@@ -298,7 +298,7 @@ public class PrivateStandardServiceImpl extends ServiceImpl<PrivateStandardMappe
|
|
|
|
|
|
@Override
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
- public boolean standardUpdate(Long id) {
|
|
|
+ public Long standardUpdate(Long id) {
|
|
|
BladeUser user = SecureUtil.getUser();
|
|
|
//获取当前规范文件信息
|
|
|
PrivateStandard privateStandard = baseMapper.selectById(id);
|
|
@@ -409,7 +409,7 @@ public class PrivateStandardServiceImpl extends ServiceImpl<PrivateStandardMappe
|
|
|
}
|
|
|
|
|
|
standardFileService.saveBatch(standardFiles);
|
|
|
- return true;
|
|
|
+ return newId;
|
|
|
}
|
|
|
}
|
|
|
|