36 lines
897 B
C#
36 lines
897 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 批量插入
|
|
/// </summary>
|
|
/// <param name="lst"></param>
|
|
/// <returns></returns>
|
|
int Add(List<T_Service_NucleicAcidInfo> lst);
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="guid"></param>
|
|
/// <returns></returns>
|
|
T_Service_NucleicAcidInfo Get(string guid);
|
|
|
|
/// <summary>
|
|
/// 获取核酸检查总数
|
|
/// </summary>
|
|
/// <param name="patientGuid"></param>
|
|
/// <returns></returns>
|
|
int GetCount(string patientGuid);
|
|
|
|
bool Delete(T_Service_NucleicAcidInfo info);
|
|
}
|
|
}
|