StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_FollowUpTemplate.cs

33 lines
924 B
C#

using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_IDataBase
{
public interface IT_Service_FollowUpTemplate
{
#region 成员方法
/// <summary>
/// 增加一条数据
/// </summary>
bool Add(T_Service_FollowUpTemplate model);
/// <summary>
/// 更新一条数据
/// </summary>
bool Update(T_Service_FollowUpTemplate model);
/// <summary>
/// 删除数据
/// </summary>
bool Delete(string ID);
/// <summary>
/// 获取单个数据
/// </summary>
T_Service_FollowUpTemplate Get(string id);
/// <summary>
/// 根据分页获得数据列表
/// </summary>
TableModel<T_Service_FollowUpTemplate> GetPageList(int pageIndex, int pageSize, string patientGuid);
#endregion 成员方法
}
}