BeizeValveBackend/ZR.Service/Content/IService/IArticleCategoryService.cs
2024-11-28 13:37:01 +08:00

14 lines
404 B
C#

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