(MedicalRecord record)
| 10 | |
| 11 | public class YR2 { |
| 12 | public static String group(MedicalRecord record){ |
| 13 | String[] adrg_zd={"R75.x00x001","Z20.600","Z21.x00x001"}; |
| 14 | String[] adrg_zd1={}; |
| 15 | String[] adrg_ss={}; |
| 16 | String[] adrg_ss1={}; |
| 17 | |
| 18 | if (true && Base.contains(adrg_zd,record.zdList[0])){ |
| 19 | Base.groupMessages.putMessage(record.Index,"符合YR2入组条件,匹配规则:主诊断匹配"); |
| 20 | |
| 21 | if (MDCY_DRG.YR29_group(record)){ |
| 22 | return "YR29"; |
| 23 | } |
| 24 | |
| 25 | return "YR2"; |
| 26 | }else{ |
| 27 | return ""; |
| 28 | } |
| 29 | } |
| 30 | } |
| 31 |
no test coverage detected