using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { /// /// 胸痛首次医疗接触 /// public interface IT_Service_ChestPain_FirstMedicalReception { /// /// 增加一条数据 /// T_Service_ChestPain_FirstMedicalReception Add(T_Service_ChestPain_FirstMedicalReception model); /// /// 更新一条数据 /// bool Update(T_Service_ChestPain_FirstMedicalReception model); /// /// 只更新指定字段 /// 更新肌钙蛋白cTnI值 患者编号+cTnI值 /// /// /// int UpdateCTnI(T_Service_ChestPain_FirstMedicalReception model); /// /// 删除数据 /// bool Delete(long ID); /// /// 获取单个数据 /// T_Service_ChestPain_FirstMedicalReception Get(long id); /// /// 根据分页获得数据列表 /// TableModel GetPageList(int pageIndex, int pageSize); /// /// 根据患者编号(GUID) 获取数据信息 /// /// 病人编号(GUID) /// TableModel GetByPatientGuid(string patientGuid); /// /// 根据where条件查询列表 /// /// /// TableModel GetModelByReport(string where); } }