feat(项目管理适配线上环境): 修复变更时无法删除附件的问题
Signed-off-by: OTTO <731554297@qq.com>
This commit is contained in:
parent
729cdb8017
commit
123d967254
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue