using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { public interface IT_Service_FirstAid_PatientPHI { /// /// 新增PHI评分 /// /// /// bool Add(T_Service_FirstAid_PatientPHI phi); /// /// 查看详情 /// /// /// PatientPHIModel Get(string guid); /// /// 查看详情 /// /// /// PatientPHIModel GetPHIByPatientGuid(string patientGuid,int flag); /// /// 查看所有评分列表 /// /// /// TableModel GetList(string patientGuid); /// /// 查看所有评分列表 /// /// /// TableModel GetPatientPHIList(string patientGuid); } }