using System.Collections.Generic; using ZR.Model; using ZR.Model.Dto; using ZR.Model.System; namespace ZR.Service.System.IService { public interface IArticleCategoryService : IBaseService { PagedInfo GetList(ArticleCategoryQueryDto parm); List GetTreeList(ArticleCategoryQueryDto parm); int AddArticleCategory(ArticleCategory parm); } }