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