using CZFW.Framework.Interface; using CZKJ.GBRS2.Entity; using System.Collections.Generic; namespace CZKJ.GBRS2.Interface { public interface IArticle : ILogicBase { IList GetList(int pageIndex, int pageSize, out int rowsCount, int? parentId, int? typeId, string keywords); IList GetSelect(IList idList, int? typeId, string keywords, int pageIndex, int pageSize, out int rowsCount); IList GetListCount(int? parentId, int? typeId, int count); IList GetList(int? count, params int[] typeIdList); IList GetArticleList(int typeId, int pageIndex, int pageSize, out int rowsCount); IList GetSearchResult(string keywords, int pageIndex, int pageSize, out int rowsCount); } }