using System; using CB.Entity; using CB.Interface; using System.Collections.Generic; namespace CB.Interface.Infrastructure { //DT_Topic public interface ITopicService : IRepository { /// /// 翻页查询数据列表 /// /// 类型(1,2,3隔开 sql语句中用到in (1,2,3)) /// /// /// /// IList ToPaging(string cids, int pageSize, int pageIndex, out int recordCount,string OrderStr); } }