46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
|
using HL_FristAidPlatform_Help;
|
|||
|
using HL_FristAidPlatform_Models;
|
|||
|
|
|||
|
namespace HL_FristAidPlatform_IDataBase
|
|||
|
{
|
|||
|
public interface IT_Service_FirstAid_PatientRTS
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 新增GCS评分
|
|||
|
/// </summary>
|
|||
|
/// <param name="phi"></param>
|
|||
|
/// <returns></returns>
|
|||
|
bool Add(T_Service_FirstAid_PatientRTS rts);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 查看详情
|
|||
|
/// </summary>
|
|||
|
/// <param name="guid"></param>
|
|||
|
/// <returns></returns>
|
|||
|
PatientRTSModel Get(string guid);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 根据患者标识,flag查看详情
|
|||
|
/// </summary>
|
|||
|
/// <param name="guid"></param>
|
|||
|
/// <param name="flag"></param>
|
|||
|
/// <returns></returns>
|
|||
|
PatientRTSModel GetRTSByPaitentGuid(string patientGuid, int flag);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 查看所有评分列表
|
|||
|
/// </summary>
|
|||
|
/// <param name="patientGuid"></param>
|
|||
|
/// <returns></returns>
|
|||
|
TableModel<PatientScoreModel> GetList(string patientGuid);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 查看所有评分列表
|
|||
|
/// </summary>
|
|||
|
/// <param name="patientGuid"></param>
|
|||
|
/// <returns></returns>
|
|||
|
TableModel<FirstAid_PatientRTSListModel> GetPatientRTSList(string patientGuid);
|
|||
|
}
|
|||
|
}
|