using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_IDataBase
{
public interface IT_Service_FirstAid_HealthCheckup
{
///
/// 新增或更新体格检查
///
bool UpdateOrInsert(HealthCheckupModel model);
///
/// 获取 患者的体格检查新
///
///
///
T_Service_FirstAid_HealthCheckup GetHealthCheckupInfo(string guid);
///
/// 更新创伤患者体格检查
///
///
///
bool UpdatePatientHealth(T_Service_FirstAid_HealthCheckup model);
}
}