34 lines
952 B
C#
34 lines
952 B
C#
using HL_FristAidPlatform_Help;
|
|
using HL_FristAidPlatform_Models;
|
|
namespace HL_FristAidPlatform_IDataBase
|
|
{
|
|
/// <summary>
|
|
/// 接口层T_Service_NoticeSMS
|
|
/// </summary>
|
|
public interface IT_Service_NoticeSMS
|
|
{
|
|
#region 成员方法
|
|
|
|
/// <summary>
|
|
/// 增加一条数据
|
|
/// </summary>
|
|
T_Service_NoticeSMS Add(T_Service_NoticeSMS model);
|
|
/// <summary>
|
|
/// 更新一条数据
|
|
/// </summary>
|
|
bool Update(T_Service_NoticeSMS model);
|
|
/// <summary>
|
|
/// 删除数据
|
|
/// </summary>
|
|
bool Delete(long ID);
|
|
/// <summary>
|
|
/// 获取单个数据
|
|
/// </summary>
|
|
T_Service_NoticeSMS Get(long id);
|
|
/// <summary>
|
|
/// 根据分页获得数据列表
|
|
/// </summary>
|
|
TableModel<T_Service_NoticeSMS> GetPageList(int pageIndex, int pageSize);
|
|
#endregion 成员方法
|
|
}
|
|
} |