32 lines
		
	
	
		
			682 B
		
	
	
	
		
			Go
		
	
	
	
		
		
			
		
	
	
			32 lines
		
	
	
		
			682 B
		
	
	
	
		
			Go
		
	
	
	
|  | package orderservicelogic | ||
|  | 
 | ||
|  | import ( | ||
|  | 	"context" | ||
|  | 
 | ||
|  | 	"app-cloudep-order-server/gen_result/pb/tweeting" | ||
|  | 	"app-cloudep-order-server/internal/svc" | ||
|  | 
 | ||
|  | 	"github.com/zeromicro/go-zero/core/logx" | ||
|  | ) | ||
|  | 
 | ||
|  | type GetOrderLogic struct { | ||
|  | 	ctx    context.Context | ||
|  | 	svcCtx *svc.ServiceContext | ||
|  | 	logx.Logger | ||
|  | } | ||
|  | 
 | ||
|  | func NewGetOrderLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetOrderLogic { | ||
|  | 	return &GetOrderLogic{ | ||
|  | 		ctx:    ctx, | ||
|  | 		svcCtx: svcCtx, | ||
|  | 		Logger: logx.WithContext(ctx), | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | // GetOrder 取得訂單詳情
 | ||
|  | func (l *GetOrderLogic) GetOrder(in *tweeting.GetOrderReq) (*tweeting.GetOrderResp, error) { | ||
|  | 	// todo: add your logic here and delete this line
 | ||
|  | 
 | ||
|  | 	return &tweeting.GetOrderResp{}, nil | ||
|  | } |