fix: 分组添加bug修复
parent
c9d8a8ffd6
commit
4493359468
|
@ -285,7 +285,9 @@ public class DeviceManagerServiceImpl implements IDeviceManagerService {
|
||||||
DeviceGroup group = bo.to(DeviceGroup.class);
|
DeviceGroup group = bo.to(DeviceGroup.class);
|
||||||
DeviceGroup dbGroup = deviceGroupData.findById(group.getId());
|
DeviceGroup dbGroup = deviceGroupData.findById(group.getId());
|
||||||
if (dbGroup == null) {
|
if (dbGroup == null) {
|
||||||
throw new BizException(ErrCode.GROUP_NOT_FOUND);
|
// 如果不存在,则添加分组
|
||||||
|
return addGroup(group);
|
||||||
|
// throw new BizException(ErrCode.GROUP_NOT_FOUND);
|
||||||
}
|
}
|
||||||
dataOwnerService.checkOwner(dbGroup);
|
dataOwnerService.checkOwner(dbGroup);
|
||||||
ReflectUtil.copyNoNulls(group, dbGroup);
|
ReflectUtil.copyNoNulls(group, dbGroup);
|
||||||
|
|
Loading…
Reference in New Issue