123456789101112131415161718192021222324252627282930 |
- package logic
- import (
- "context"
- "bp.jydev.jianyu360.cn/BaseService/orderApplication/api/internal/svc"
- "bp.jydev.jianyu360.cn/BaseService/orderApplication/api/internal/types"
- "github.com/zeromicro/go-zero/core/logx"
- )
- type OrderExamineLogic struct {
- logx.Logger
- ctx context.Context
- svcCtx *svc.ServiceContext
- }
- func NewOrderExamineLogic(ctx context.Context, svcCtx *svc.ServiceContext) OrderExamineLogic {
- return OrderExamineLogic{
- Logger: logx.WithContext(ctx),
- ctx: ctx,
- svcCtx: svcCtx,
- }
- }
- func (l *OrderExamineLogic) OrderExamine(req types.OrderExamineReq) (*types.Resp, error) {
- // todo: add your logic here and delete this line
- return &types.Resp{}, nil
- }
|