using HL_FristAidPlatform_Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_IDataBase { public interface IT_Base_DiagnosisAndTriageGo { #region 分诊去向 List GetTriageGoList(); T_Base_TriageGo GetTriageGoById(long id); List GetTriageGoList(string name, long systemId); T_Base_TriageGo GetTriageGoByName(string name, long systemId); bool SaveTriageGo(T_Base_TriageGo department); bool UpdateTriageGo(T_Base_TriageGo department); #endregion #region 印象诊断 List GetImpressionDiagnosisList(); List GetImpressionDiagnosisList(string name, long systemId); T_Base_ImpressionDiagnosis GetImpressionDiagnosisById(long id); T_Base_ImpressionDiagnosis GetImpressionDiagnosisByName(string name, long systemId); bool SaveImpressionDiagnosis(T_Base_ImpressionDiagnosis department); bool UpdateImpressionDiagnosis(T_Base_ImpressionDiagnosis department); #endregion } }