shgx_tz_mom/ZR.Service/System/IService/IArticleCategoryService.cs

15 lines
428 B
C#
Raw Normal View History

2022-05-13 21:46:27 +08:00
using System.Collections.Generic;
using ZR.Model;
using ZR.Model.Dto;
2021-08-23 16:57:25 +08:00
using ZR.Model.System;
2021-09-16 19:35:17 +08:00
namespace ZR.Service.System.IService
2021-08-23 16:57:25 +08:00
{
public interface IArticleCategoryService : IBaseService<ArticleCategory>
{
2022-05-13 21:46:27 +08:00
PagedInfo<ArticleCategory> GetList(ArticleCategoryQueryDto parm);
List<ArticleCategory> GetTreeList(ArticleCategoryQueryDto parm);
int AddArticleCategory(ArticleCategory parm);
2021-08-23 16:57:25 +08:00
}
}