72 lines
2.4 KiB
Go
72 lines
2.4 KiB
Go
// Code generated by goctl. DO NOT EDIT.
|
|
// Source: order.proto
|
|
|
|
package server
|
|
|
|
import (
|
|
"context"
|
|
|
|
"app-cloudep-order-server/gen_result/pb/tweeting"
|
|
orderservicelogic "app-cloudep-order-server/internal/logic/orderservice"
|
|
"app-cloudep-order-server/internal/svc"
|
|
)
|
|
|
|
type OrderServiceServer struct {
|
|
svcCtx *svc.ServiceContext
|
|
tweeting.UnimplementedOrderServiceServer
|
|
}
|
|
|
|
func NewOrderServiceServer(svcCtx *svc.ServiceContext) *OrderServiceServer {
|
|
return &OrderServiceServer{
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
// CreateOrder 建立訂單
|
|
func (s *OrderServiceServer) CreateOrder(ctx context.Context, in *tweeting.CreateOrderReq) (*tweeting.OKResp, error) {
|
|
l := orderservicelogic.NewCreateOrderLogic(ctx, s.svcCtx)
|
|
return l.CreateOrder(in)
|
|
}
|
|
|
|
// CancelOrder 取消訂單
|
|
func (s *OrderServiceServer) CancelOrder(ctx context.Context, in *tweeting.CancelOrderReq) (*tweeting.OKResp, error) {
|
|
l := orderservicelogic.NewCancelOrderLogic(ctx, s.svcCtx)
|
|
return l.CancelOrder(in)
|
|
}
|
|
|
|
// ModifyOrder 修改訂單
|
|
func (s *OrderServiceServer) ModifyOrder(ctx context.Context, in *tweeting.ModifyOrderReq) (*tweeting.OKResp, error) {
|
|
l := orderservicelogic.NewModifyOrderLogic(ctx, s.svcCtx)
|
|
return l.ModifyOrder(in)
|
|
}
|
|
|
|
// ModifyOrderStatus 修改訂單狀態
|
|
func (s *OrderServiceServer) ModifyOrderStatus(ctx context.Context, in *tweeting.ModifyOrderStatusReq) (*tweeting.OKResp, error) {
|
|
l := orderservicelogic.NewModifyOrderStatusLogic(ctx, s.svcCtx)
|
|
return l.ModifyOrderStatus(in)
|
|
}
|
|
|
|
// DeleteOrder 刪除訂單(軟刪除)
|
|
func (s *OrderServiceServer) DeleteOrder(ctx context.Context, in *tweeting.DeleteOrderReq) (*tweeting.OKResp, error) {
|
|
l := orderservicelogic.NewDeleteOrderLogic(ctx, s.svcCtx)
|
|
return l.DeleteOrder(in)
|
|
}
|
|
|
|
// GetOrder 取得訂單詳情
|
|
func (s *OrderServiceServer) GetOrder(ctx context.Context, in *tweeting.GetOrderReq) (*tweeting.GetOrderResp, error) {
|
|
l := orderservicelogic.NewGetOrderLogic(ctx, s.svcCtx)
|
|
return l.GetOrder(in)
|
|
}
|
|
|
|
// ListOrder 取得訂單列表
|
|
func (s *OrderServiceServer) ListOrder(ctx context.Context, in *tweeting.ListOrderReq) (*tweeting.ListOrderResp, error) {
|
|
l := orderservicelogic.NewListOrderLogic(ctx, s.svcCtx)
|
|
return l.ListOrder(in)
|
|
}
|
|
|
|
// OrderStatusTimeout 訂單超時任務/cron/order-status/timeout
|
|
func (s *OrderServiceServer) OrderStatusTimeout(ctx context.Context, in *tweeting.OrderStatusTimeoutReq) (*tweeting.OKResp, error) {
|
|
l := orderservicelogic.NewOrderStatusTimeoutLogic(ctx, s.svcCtx)
|
|
return l.OrderStatusTimeout(in)
|
|
}
|