using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { /// /// 接口层T_Base_VideoDeviceServer /// public interface IT_Base_VideoDeviceServer { #region 成员方法 /// /// 增加一条数据 /// bool Add(T_Base_VideoDeviceServer model); /// /// 更新一条数据 /// int Update(T_Base_VideoDeviceServer model); /// /// 删除数据 /// bool Delete(long ID); /// /// 获取单个数据 /// T_Base_VideoDeviceServer Get(long id); /// /// 根据分页获得数据列表 /// TableModel GetPageList(int pageIndex, int pageSize, string keyWord); #endregion 成员方法 /// /// 根据服务器类型获取服务器数据 /// /// 服务器类型1注册服务器,2流媒体服务器,3报警服务器,4解码服务器 /// TableModel GetListByType(int type); } }