52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
using HL_FristAidPlatform_Help;
|
|
using HL_FristAidPlatform_Help.Model;
|
|
using HL_FristAidPlatform_Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HL_FristAidPlatform_IDataBase
|
|
{
|
|
/// <summary>
|
|
/// 接口层 我的收藏
|
|
/// </summary>
|
|
public interface IT_Service_EpidemicNotification
|
|
{
|
|
#region 增
|
|
/// <summary>
|
|
/// 增加一条数据
|
|
/// </summary>
|
|
/// <param name="model">实体</param>
|
|
/// <returns></returns>
|
|
bool Add(T_Service_EpidemicNotification model, List<T_Service_NucleicAcidInfo> lst);
|
|
#endregion
|
|
|
|
#region 改
|
|
/// <summary>
|
|
/// 更新一条数据
|
|
/// </summary>
|
|
/// <param name="model">实体</param>
|
|
/// <returns></returns>
|
|
bool Update(T_Service_EpidemicNotification model);
|
|
#endregion
|
|
|
|
#region 查
|
|
/// <summary>
|
|
/// 得到一个对象实体
|
|
/// </summary>
|
|
/// <param name="long ID">主键</param>
|
|
/// <returns></returns>
|
|
EpidemicNotificationModel GetInfo(string patientGuid);
|
|
|
|
T_Service_EpidemicNotification Get(string patientGuid);
|
|
|
|
// <summary>
|
|
/// 获取疫情告知信息--打印
|
|
/// </summary>
|
|
/// <param name="patientGuid"></param>
|
|
/// <returns></returns>
|
|
EpidemicNotificationPrintModel GetEpidemicNotificationOfPrint(string patientGuid);
|
|
|
|
|
|
#endregion
|
|
}
|
|
}
|