Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Service ¶
type Service interface { /** * 添加关注 */ Add(ctx context.Context, param dto.MemberBrandAttention) (int64, error) /** * 取消关注 */ Delete(ctx context.Context, brandId int64) (int64, error) /** * 获取用户关注列表 */ List(ctx context.Context, pageNum, pageSize int64) ([]dto.MemberBrandAttention, int64, error) /** * 获取用户关注详情 */ Detail(ctx context.Context, brandId int64) (*dto.MemberBrandAttention, error) /** * 清空关注列表 */ Clear(ctx context.Context) (int64, error) // contains filtered or unexported methods }
会员品牌关注管理Service
Click to show internal directories.
Click to hide internal directories.