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_Service_ApoplexyScreenPhysicalFitness { /// /// 保存体格检查 /// /// /// bool SaveScreenPhysicalFitness(T_Service_ApoplexyScreenPhysicalFitness physicalFitness); /// /// 获取体格检查 /// /// /// T_Service_ApoplexyScreenPhysicalFitness GetScreenPhysicalFitness(string patientGuid, string flag); } }