ICategoryService.cs 419 B

12345678910111213
  1. using ZR.Mall.Model;
  2. using ZR.Mall.Model.Dto;
  3. namespace ZR.Mall.Service.IService
  4. {
  5. public interface ICategoryService : IBaseService<Category>
  6. {
  7. PagedInfo<CategoryDto> GetList(ShoppingCategoryQueryDto parm);
  8. List<CategoryDto> GetTreeList(ShoppingCategoryQueryDto parm);
  9. int AddCategory(Category parm);
  10. PagedInfo<CategoryDto> ExportList(ShoppingCategoryQueryDto parm);
  11. }
  12. }