12345678910111213141516171819202122232425262728293031 |
- package logic
- import (
- "context"
- "jyMicroservices/jyBXAdditional/rpc/bxcollection/bxcol"
- "jyMicroservices/jyBXAdditional/rpc/bxcollection/internal/svc"
- "github.com/zeromicro/go-zero/core/logx"
- )
- type LabelActionLogic struct {
- ctx context.Context
- svcCtx *svc.ServiceContext
- logx.Logger
- }
- func NewLabelActionLogic(ctx context.Context, svcCtx *svc.ServiceContext) *LabelActionLogic {
- return &LabelActionLogic{
- ctx: ctx,
- svcCtx: svcCtx,
- Logger: logx.WithContext(ctx),
- }
- }
- // 标签新增或删除
- func (l *LabelActionLogic) LabelAction(in *bxcol.LabelActionReq) (*bxcol.LabelActionRes, error) {
- // todo: add your logic here and delete this line
- return &bxcol.LabelActionRes{}, nil
- }
|