(MedicalRecord record)
| 10 | |
| 11 | public class VS1 { |
| 12 | public static String group(MedicalRecord record){ |
| 13 | String[] adrg_zd={"T78.000","T78.101","T78.102","T78.200","T78.201","T78.300","T78.300x003","T78.300x004","T78.301","T78.400","T78.400x002","T80.300","T80.300x001","T80.400","T80.500","T80.500x001","T80.600x004","T80.600x005","T80.600x006","T80.601","T80.602","T80.603","T80.900x003","T80.901","T80.903","T88.600","T88.601","T88.700x004"}; |
| 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,"符合VS1入组条件,匹配规则:主诊断匹配"); |
| 20 | |
| 21 | if (MDCV_DRG.VS13_group(record)){ |
| 22 | return "VS13"; |
| 23 | } |
| 24 | |
| 25 | if (MDCV_DRG.VS15_group(record)){ |
| 26 | return "VS15"; |
| 27 | } |
| 28 | |
| 29 | return "VS1"; |
| 30 | }else{ |
| 31 | return ""; |
| 32 | } |
| 33 | } |
| 34 | } |
| 35 |
no test coverage detected