1
All checks were successful
Build and Push to Target Registry / 构建并推送镜像到目标仓库 (push) Successful in 4m54s

This commit is contained in:
dy 2025-08-15 10:29:54 +08:00
parent da70fcc869
commit 77bfdd2823

View File

@ -93,8 +93,8 @@ public class AttendanceAreaServiceImpl implements IAttendanceAreaService {
if (ObjectUtil.isNotEmpty(bo.getDeviceManageId())) {
assert add != null;
// deviceManageId 集合转换为以逗号分隔的字符串
String deviceManageIdsStr = StringUtils.join(bo.getDeviceManageId(), ",");
add.setDeviceManageId(deviceManageIdsStr);
// String deviceManageIdsStr = StringUtils.join(bo.getDeviceManageId(), ",");
add.setDeviceManageId(bo.getDeviceManageId());
}
validEntityBeforeSave(add);
boolean flag = baseMapper.insert(add) > 0;