(MedicalRecord record)
| 8 | public class MDCU_DRG { |
| 9 | |
| 10 | public static boolean US19_group(MedicalRecord record){ |
| 11 | return true; |
| 12 | } |
| 13 | |
| 14 | public static boolean UR13_group(MedicalRecord record){ |
| 15 | return record.zdList.length>1 && (Base.has_mcc(record.Index,record.zdList[0],Arrays.copyOfRange(record.zdList,1,record.zdList.length)) || Base.has_cc(record.Index,record.zdList[0],Arrays.copyOfRange(record.zdList,1,record.zdList.length))); |