Commit d73cd085 authored by tianbo's avatar tianbo

feat(JgUseRegistration): 添加数据质量评分转换为名称功能

- 在 JgUseRegistrationServiceImpl 类中,向装置信息中添加数据质量评分转换为名称的功能 - 使用 commonServiceImpl.castDataQualityScore2Name 方法进行评分转换
parent 97771423
...@@ -4704,7 +4704,8 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD ...@@ -4704,7 +4704,8 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
.put("pipelineLength", totalPipelineLength) .put("pipelineLength", totalPipelineLength)
.put("equListName", projectContraption.getEquListName()) .put("equListName", projectContraption.getEquListName())
.put("equCategoryName", projectContraption.getEquCategoryName()) .put("equCategoryName", projectContraption.getEquCategoryName())
.put("equDefineName", projectContraption.getEquDefineName()); .put("equDefineName", projectContraption.getEquDefineName())
.put("dataQualityScore", commonServiceImpl.castDataQualityScore2Name(projectContraption.getDataQualityScore(), projectContraption.getIsIntoManagement()));
setProjectContraptionInfo(projectContraption, resultBuilder); setProjectContraptionInfo(projectContraption, resultBuilder);
return resultBuilder.build(); return resultBuilder.build();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment