(MedicalRecord record)
| 9 | |
| 10 | public class GD2 { |
| 11 | public static String group(MedicalRecord record){ |
| 12 | String[] adrg_zd={}; |
| 13 | String[] adrg_ss={"47.0100","47.0901","47.0902","47.0903","47.1100","47.1900x001","47.2x00","47.2x01","47.9100","47.9200","47.9901"}; |
| 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,"符合GD2入组条件,匹配规则:主手术匹配"); |
| 18 | |
| 19 | if (MDCG_DRG.GD23_group(record)){ |
| 20 | return "GD23"; |
| 21 | } |
| 22 | |
| 23 | if (MDCG_DRG.GD25_group(record)){ |
| 24 | return "GD25"; |
| 25 | } |
| 26 | |
| 27 | return "GD2"; |
| 28 | }else{ |
| 29 | return ""; |
| 30 | } |
| 31 | } |
| 32 | } |
| 33 |
no test coverage detected