45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
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<T_Base_TriageGo> GetTriageGoList();
|
|
|
|
T_Base_TriageGo GetTriageGoById(long id);
|
|
|
|
List<T_Base_TriageGo> 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<T_Base_ImpressionDiagnosis> GetImpressionDiagnosisList();
|
|
|
|
List<T_Base_ImpressionDiagnosis> 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
|
|
|
|
|
|
}
|
|
}
|