using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { public interface IT_Service_FirstAid_PatientRTS { /// /// 新增GCS评分 /// /// /// bool Add(T_Service_FirstAid_PatientRTS rts); /// /// 查看详情 /// /// /// PatientRTSModel Get(string guid); /// /// 根据患者标识,flag查看详情 /// /// /// /// PatientRTSModel GetRTSByPaitentGuid(string patientGuid, int flag); /// /// 查看所有评分列表 /// /// /// TableModel GetList(string patientGuid); /// /// 查看所有评分列表 /// /// /// TableModel GetPatientRTSList(string patientGuid); } }