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_NucleicAcidInfo { /// /// 批量插入 /// /// /// int Add(List lst); /// /// /// /// /// T_Service_NucleicAcidInfo Get(string guid); /// /// 获取核酸检查总数 /// /// /// int GetCount(string patientGuid); bool Delete(T_Service_NucleicAcidInfo info); } }