Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Service ¶
type Service interface { /** * 分页获取推荐品牌 */ RecommendList(ctx context.Context, pageNum, pageSize int) ([]dto.PmsBrand, error) /** * 获取品牌详情 */ Detail(ctx context.Context, brandId int64) (*dto.PmsBrand, error) /** * 分页获取品牌关联商品 */ ProductList(ctx context.Context, brandId int64, pageNum int, pageSize int) ([]dto.PmsProduct, int64, error) // contains filtered or unexported methods }
前台品牌管理Service
Click to show internal directories.
Click to hide internal directories.