if (utils.getUtilType() != null) { osbl.setOsblType(utils.getUtilType()); } if (utils.getCostValue() != null) { osbl.setOsblValue(utils.getCostValue()); } planOsblList.add(osbl);
时间: 2024-02-14 15:35:09 浏览: 86
这段代码的作用是如果 `osbl` 不为 null ,则将 `osbl` 对象中的 `osblType` 和 `osblValue` 属性值分别设置为 `utils` 对象中的 `utilType` 和 `costValue` 属性值。然后将 `osbl` 对象添加到 `planOsblList` 集合中。其中 `utils` 和 `planOsblList` 都是该代码片段中未定义的变量或对象,需要在上下文中查找其定义。
阅读全文