.NETAdmin/ZR.Mall/Service/IService/ICategoryService.cs
2025-07-29 19:15:56 +08:00

14 lines
419 B
C#

using ZR.Mall.Model;
using ZR.Mall.Model.Dto;
namespace ZR.Mall.Service.IService
{
public interface ICategoryService : IBaseService<Category>
{
PagedInfo<CategoryDto> GetList(ShoppingCategoryQueryDto parm);
List<CategoryDto> GetTreeList(ShoppingCategoryQueryDto parm);
int AddCategory(Category parm);
PagedInfo<CategoryDto> ExportList(ShoppingCategoryQueryDto parm);
}
}