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