提交websocket相关代码

dev_2.0.0
liu 1 year ago
parent f5ca86ede5
commit f976fc5efb

@ -15,6 +15,9 @@ public class TalkResultResVO {
@ApiModelProperty("表示体格检查工具或辅助检查项id")
private String actionId;
@ApiModelProperty("表示体格检查工具或辅助检查项所属父级类型(存在目录树的场景)")
private String actionType;
@ApiModelProperty("type='2' itemName:工具名,type='3' itemName检查项目名")
private String itemName;

@ -172,6 +172,7 @@ public class AskServiceImpl implements AskService {
talkResultResVO.setItemName(configPhysicalTool.getToolName());
talkResultResVO.setItemImage(configPhysicalTool.getIconBase64());
talkResultResVO.setRequireLocation(configPhysicalTool.getRequireLocation());
talkResultResVO.setActionType(configPhysicalTool.getType());
}
}
@ -180,6 +181,7 @@ public class AskServiceImpl implements AskService {
ConfigAncillaryItem configAncillaryItem = configAncillaryItemService.getById(actionId);
if (null != configAncillaryItem) {
talkResultResVO.setItemName(configAncillaryItem.getItemName());
talkResultResVO.setActionType(configAncillaryItem.getType());
}
}

Loading…
Cancel
Save