|
@@ -9,7 +9,6 @@ import com.diagbot.dto.*;
|
|
import com.diagbot.entity.DiseaseInfo;
|
|
import com.diagbot.entity.DiseaseInfo;
|
|
import com.diagbot.entity.DiseaseProperty;
|
|
import com.diagbot.entity.DiseaseProperty;
|
|
import com.diagbot.entity.node.LisRemind;
|
|
import com.diagbot.entity.node.LisRemind;
|
|
-import com.diagbot.entity.node.YiBaoDiseaseName;
|
|
|
|
import com.diagbot.entity.relationship.LisRemindMedicine;
|
|
import com.diagbot.entity.relationship.LisRemindMedicine;
|
|
import com.diagbot.entity.relationship.LisRemindYiBaoDiseaseName;
|
|
import com.diagbot.entity.relationship.LisRemindYiBaoDiseaseName;
|
|
import com.diagbot.enums.RedisEnum;
|
|
import com.diagbot.enums.RedisEnum;
|
|
@@ -836,10 +835,9 @@ public class NeoFacade {
|
|
*/
|
|
*/
|
|
public NeoPushDTO getDiagInfo(NeoPushVO neoPushVO) {
|
|
public NeoPushDTO getDiagInfo(NeoPushVO neoPushVO) {
|
|
NeoPushDTO pushDTO = new NeoPushDTO();
|
|
NeoPushDTO pushDTO = new NeoPushDTO();
|
|
- YiBaoDiseaseNode icdDiseaseNode = new YiBaoDiseaseNode();
|
|
|
|
- String term;
|
|
|
|
- term = neoPushVO.getDiagVo().getDiags().get(0).getName();
|
|
|
|
- List<YiBaoDiseaseName> yiBaoName = yiBaoDiseaseRepository.findByNameIs(term);
|
|
|
|
|
|
+// YiBaoDiseaseNode icdDiseaseNode = new YiBaoDiseaseNode();
|
|
|
|
+ String term = neoPushVO.getDiagVo().getDiags().get(0).getName();
|
|
|
|
+ /*List<YiBaoDiseaseName> yiBaoName = yiBaoDiseaseRepository.findByNameIs(term);
|
|
|
|
|
|
YiBaoDiseaseName icdDisease = null;
|
|
YiBaoDiseaseName icdDisease = null;
|
|
if (ListUtil.isNotEmpty(yiBaoName)) {
|
|
if (ListUtil.isNotEmpty(yiBaoName)) {
|
|
@@ -848,7 +846,7 @@ public class NeoFacade {
|
|
if (icdDisease != null) {
|
|
if (icdDisease != null) {
|
|
icdDisease = NeoUtil.extract_node(icdDisease);
|
|
icdDisease = NeoUtil.extract_node(icdDisease);
|
|
pushDTO = icdDiseaseNode.YiBaoDiseasetoDiseaseDTO(icdDisease, neoPushVO);
|
|
pushDTO = icdDiseaseNode.YiBaoDiseasetoDiseaseDTO(icdDisease, neoPushVO);
|
|
- }
|
|
|
|
|
|
+ }*/
|
|
pushDTO = this.reverseInfo(term);
|
|
pushDTO = this.reverseInfo(term);
|
|
|
|
|
|
return pushDTO;
|
|
return pushDTO;
|