16 lines
485 B
C#
16 lines
485 B
C#
using RIZO.Model.Content;
|
|
using RIZO.Model.Content.Dto;
|
|
|
|
namespace RIZO.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);
|
|
}
|
|
}
|