StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_EpidemicNotifica...

52 lines
1.4 KiB
C#
Raw Normal View History

2024-03-11 09:47:34 +08:00
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
}
}