using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { public interface IT_Service_FirstAid_PatientMEWS { /// /// 新增MEWS评分 /// /// /// bool Add(T_Service_FirstAid_PatientMEWS mews); /// /// 查看评分详情 /// /// /// PatientMEWSModel Get(string guid); /// /// 根据患者GUID,Flag 查看评分详情 /// /// /// PatientMEWSModel GetMEWSByPatientGuid(string patientGuid, int flag); /// /// 查看所有评分列表 /// /// /// TableModel GetList(string patientGuid); /// /// 查看所有评分列表 /// /// /// TableModel GetPatientMEWSList(string patientGuid); } }