14 lines
419 B
C#
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);
|
|
}
|
|
}
|