using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 资讯内容-数据库操作接口 /// public interface IInfo_ContentDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据分类查询全部信息 /// /// /// IEnumerable SelectListBySortId(int? SortId); /// /// 根据分类查询全部信息 /// /// /// /// IEnumerable SelectListBySortId(Guid Bussinessid, int? Num); /// /// 根据分类编号分页查询 /// /// /// /// /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid FirmId, int? TypeId, int? SortId, string Title, string OrderString); /// /// 根据分类编号,条数,标题,排序字段分页查询 /// /// /// /// IEnumerable SelectListByWhere(int? SortId, int? Num, bool IsHomeShow); /// /// 根据编号查询信息 /// /// /// Model.Info_Content SelectModelBySortId(int? Keyid); } }