using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; using System.Data; namespace CY.IDAL { /// /// 资讯分类-数据库操作接口 /// public interface IInfo_SortDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据上级编号查询全部分类 /// /// 编号 /// IEnumerable SelectListByParentId(int? ParentId); /// /// 查询全部分类 /// /// DataTable SelectList(Guid FirmId); /// /// 根据编号查询单个信息 /// /// 编号 /// Info_Sort SelectModelByKeyId(int? KeyId); /// /// 删除分类及分类下信息 /// /// /// bool DeleteModelAll(int? Keyid); } }