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