BeizeValveBackend/ZR.Service/Content/IService/IArticleCategoryService.cs

14 lines
404 B
C#
Raw Normal View History

2024-11-28 13:36:05 +08:00
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);
}
}