1、需求列表查询时,返回关联的产品线

This commit is contained in:
2026-03-04 15:38:07 +08:00
parent 6ba2ffd705
commit dd681e3ee3
2 changed files with 4 additions and 4 deletions

View File

@@ -186,6 +186,6 @@ public class SpdmDemandVo extends BaseEntity {
/**
* 产品线(利元亨定制)
*/
private String productionLine;
private String produceLine;
}

View File

@@ -753,7 +753,7 @@ public class DemandServiceImpl extends BaseService implements IDemandService {
if (spdmNodeExtraVo == null) {
log.info("项目拓展属性中没有产品线数据");
}else {
spdmDemandVo.setProductionLine(spdmNodeExtraVo.getPropertyValue());
spdmDemandVo.setProduceLine(spdmNodeExtraVo.getPropertyValue());
}
}
}
@@ -1230,7 +1230,7 @@ public class DemandServiceImpl extends BaseService implements IDemandService {
if (spdmNodeExtraVo == null) {
log.info("项目拓展属性中没有产品线数据");
}else {
spdmDemandVo.setProductionLine(spdmNodeExtraVo.getPropertyValue());
spdmDemandVo.setProduceLine(spdmNodeExtraVo.getPropertyValue());
}
}
}
@@ -2154,7 +2154,7 @@ public class DemandServiceImpl extends BaseService implements IDemandService {
if (spdmNodeExtraVo == null) {
log.info("项目拓展属性中没有产品线数据");
}else {
spdmDemandVo.setProductionLine(spdmNodeExtraVo.getPropertyValue());
spdmDemandVo.setProduceLine(spdmNodeExtraVo.getPropertyValue());
}
}
}