2025-10-21 13:38:23 +08:00

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);
}
}