(MedicalRecord record)
| 10 | |
| 11 | public class UR1 { |
| 12 | public static String group(MedicalRecord record){ |
| 13 | String[] adrg_zd={"F10.000","F10.001","F10.002","F10.003","F10.100","F10.100x002","F10.200","F10.201","F10.300","F10.400","F10.401","F10.500","F10.501","F10.502","F10.503","F10.504","F10.505","F10.600","F10.600x002","F10.601","F10.700","F10.700x091","F10.701","F10.800","F10.900","R78.000","T51.001"}; |
| 14 | String[] adrg_zd1={}; |
| 15 | String[] adrg_ss={}; |
| 16 | String[] adrg_ss1={}; |
| 17 | String[] adrg_ss2={}; |
| 18 | if (true && Base.contains(adrg_zd,record.zdList[0])){ |
| 19 | Base.groupMessages.putMessage(record.Index,"符合UR1入组条件,匹配规则:主诊断匹配"); |
| 20 | |
| 21 | if (MDCU_DRG.UR13_group(record)){ |
| 22 | return "UR13"; |
| 23 | } |
| 24 | |
| 25 | if (MDCU_DRG.UR15_group(record)){ |
| 26 | return "UR15"; |
| 27 | } |
| 28 | |
| 29 | return ""; |
| 30 | }else{ |
| 31 | return ""; |
| 32 | } |
| 33 | } |
| 34 | } |
| 35 |
no test coverage detected