package logic import ( "context" "jyMicroservices/jyBXAdditional/api/internal/svc" "jyMicroservices/jyBXAdditional/api/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type LabelActionLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewLabelActionLogic(ctx context.Context, svcCtx *svc.ServiceContext) *LabelActionLogic { return &LabelActionLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *LabelActionLogic) LabelAction(req *types.LabelAction) (resp *types.CommonRes, err error) { // todo: add your logic here and delete this line return }