MCPcopy Create free account
hub / github.com/OpenDRG/DRG_Java / AD1

Class AD1

drg_group/suzhou_2023/ADRG/AD1.java:10–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8import drg_group.suzhou_2023.DRG.MDCA_DRG;
9
10public class AD1 {
11 public static String group(MedicalRecord record){
12 String[] adrg_zd={};
13 String[] adrg_ss={"52.8000","52.8200","52.8300"};
14 String[] adrg_ss1={};
15
16 if (true && record.ssList!=null &&record.ssList.length>0 && Base.contains(adrg_ss,record.ssList[0])){
17 Base.groupMessages.putMessage(record.Index,"符合AD1入组条件,匹配规则:主手术匹配");
18
19 if (MDCA_DRG.AD19_group(record)){
20 return "AD19";
21 }
22
23 return "AD1";
24 }else{
25 return "";
26 }
27 }
28}
29

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected