39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using HL_FristAidPlatform_Help;
|
|
using HL_FristAidPlatform_Models;
|
|
|
|
namespace HL_FristAidPlatform_IDataBase
|
|
{
|
|
public interface IT_Service_FirstAid_PatientGCS
|
|
{
|
|
/// <summary>
|
|
/// 新增CGS评分
|
|
/// </summary>
|
|
/// <param name="phi"></param>
|
|
/// <returns></returns>
|
|
bool Add(T_Service_PatientGCS cgs);
|
|
|
|
/// <summary>
|
|
/// 查看详情
|
|
/// </summary>
|
|
/// <param name="guid"></param>
|
|
/// <returns></returns>
|
|
PatientGCSModel Get(string guid);
|
|
|
|
/// <summary>
|
|
/// 查看所有评分列表
|
|
/// </summary>
|
|
/// <param name="patientGuid"></param>
|
|
/// <returns></returns>
|
|
TableModel<PatientScoreModel> GetList(string patientGuid);
|
|
|
|
/// <summary>
|
|
/// 查看所有评分列表
|
|
/// </summary>
|
|
/// <param name="patientGuid"></param>
|
|
/// <returns></returns>
|
|
TableModel<PatientGCSListModel> GetPatientCGSList(string patientGuid);
|
|
|
|
T_Service_PatientGCS GetPatientGCS(string guid, int flag);
|
|
}
|
|
}
|