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