(MedicalRecord record)
| 9 | |
| 10 | public class ST1 { |
| 11 | public static String group(MedicalRecord record){ |
| 12 | String[] adrg_zd={"R50.800x002","R50.801","R50.802","R50.803","R50.900","R50.900x002","R50.901"}; |
| 13 | String[] adrg_ss={}; |
| 14 | String[] adrg_ss1={}; |
| 15 | |
| 16 | if (true && Base.contains(adrg_zd,record.zdList[0])){ |
| 17 | Base.groupMessages.putMessage(record.Index,"符合ST1入组条件,匹配规则:主诊断匹配"); |
| 18 | |
| 19 | if (MDCS_DRG.ST1A_group(record)){ |
| 20 | return "ST1A"; |
| 21 | } |
| 22 | |
| 23 | if (MDCS_DRG.ST15_group(record)){ |
| 24 | return "ST15"; |
| 25 | } |
| 26 | |
| 27 | return "ST1"; |
| 28 | }else{ |
| 29 | return ""; |
| 30 | } |
| 31 | } |
| 32 | } |
| 33 |
no test coverage detected