participateSetUpInfoLogic.go 692 B

123456789101112131415161718192021222324252627282930313233
  1. package logic
  2. import (
  3. "context"
  4. "net/http"
  5. "jyBXCore/api/internal/svc"
  6. "jyBXCore/api/internal/types"
  7. "github.com/zeromicro/go-zero/core/logx"
  8. )
  9. type ParticipateSetUpInfoLogic struct {
  10. logx.Logger
  11. ctx context.Context
  12. svcCtx *svc.ServiceContext
  13. r *http.Request
  14. }
  15. func NewParticipateSetUpInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext, r *http.Request) *ParticipateSetUpInfoLogic {
  16. return &ParticipateSetUpInfoLogic{
  17. Logger: logx.WithContext(ctx),
  18. ctx: ctx,
  19. svcCtx: svcCtx,
  20. r: r,
  21. }
  22. }
  23. func (l *ParticipateSetUpInfoLogic) ParticipateSetUpInfo(req *types.ParticipateSetUpInfoReq) (resp *types.CommonResp, err error) {
  24. logx.Info(req)
  25. return
  26. }