feat(项目管理适配线上环境): 修复变更时无法删除附件的问题

Signed-off-by: OTTO <731554297@qq.com>
This commit is contained in:
OTTO 2025-03-19 11:11:19 +08:00
parent 729cdb8017
commit 123d967254
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ public class PmsProductRequirement extends BaseEntity
if (StringUtils.isNotEmpty(productReqSpecsChangeVo.getContent())) {
target.setContent(productReqSpecsChangeVo.getContent());
}
if (StringUtils.isNotEmpty(productReqSpecsChangeVo.getFileIdentifiers())) {
if (productReqSpecsChangeVo.getFileIdentifiers() != null) {
target.setFileIdentifiers(productReqSpecsChangeVo.getFileIdentifiers());
}
return target;