初始刷
This commit is contained in:
13
ZR.Service/Content/IService/IArticleCategoryService.cs
Normal file
13
ZR.Service/Content/IService/IArticleCategoryService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using ZR.Model;
|
||||
using ZR.Model.Content;
|
||||
using ZR.Model.Content.Dto;
|
||||
|
||||
namespace ZR.Service.Content.IService
|
||||
{
|
||||
public interface IArticleCategoryService : IBaseService<ArticleCategory>
|
||||
{
|
||||
PagedInfo<ArticleCategory> GetList(ArticleCategoryQueryDto parm);
|
||||
List<ArticleCategory> GetTreeList(ArticleCategoryQueryDto parm);
|
||||
int AddArticleCategory(ArticleCategory parm);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user