using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { public interface IT_Base_QuestionClass { #region base /// /// 获取分页列表 /// /// /// /// TableModel GetPageList(int pageIndex, int pageSize); /// /// 获取单个 /// /// /// T_Base_QuestionClass Get(long id); /// /// 添加 /// /// /// bool Add(T_Base_QuestionClass entity); /// /// 编辑 /// /// /// bool Update(T_Base_QuestionClass entity); /// /// 批量删除 /// /// /// bool Dels(dynamic[] ids); #endregion } }