21 lines
470 B
C#
21 lines
470 B
C#
using RIZO.Mall.Model;
|
|
using RIZO.Mall.Model.Dto;
|
|
|
|
namespace RIZO.Mall.Service.IService
|
|
{
|
|
/// <summary>
|
|
/// 品牌表service接口
|
|
/// </summary>
|
|
public interface IBrandService : IBaseService<Brand>
|
|
{
|
|
PagedInfo<BrandDto> GetList(ShopBrandQueryDto parm);
|
|
|
|
Brand GetInfo(long Id);
|
|
|
|
Brand AddShopBrand(Brand parm);
|
|
int UpdateShopBrand(Brand parm);
|
|
|
|
PagedInfo<BrandDto> ExportList(ShopBrandQueryDto parm);
|
|
}
|
|
}
|