16 lines
479 B
C#
16 lines
479 B
C#
using ZR.Model.Content;
|
|
using ZR.Model.Content.Dto;
|
|
|
|
namespace ZR.Service.Content.IService
|
|
{
|
|
public interface IArticleCategoryService : IBaseService<ArticleCategory>
|
|
{
|
|
PagedInfo<ArticleCategoryDto> GetList(ArticleCategoryQueryDto parm);
|
|
List<ArticleCategoryDto> GetTreeList(ArticleCategoryQueryDto parm);
|
|
int AddArticleCategory(ArticleCategory parm);
|
|
|
|
int PlusJoinNum(int categoryId);
|
|
int ReduceJoinNum(int categoryId);
|
|
}
|
|
}
|