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