fusenapi/server/orders/internal/handler/getorderinvoicehandler.go

22 lines
477 B
Go
Raw Normal View History

2023-06-15 07:28:17 +00:00
package handler
import (
"net/http"
"fusenapi/server/orders/internal/logic"
"fusenapi/server/orders/internal/svc"
"fusenapi/server/orders/internal/types"
)
func GetOrderInvoiceHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
var req types.GetOrderInvoiceReq
2023-07-21 06:20:21 +00:00
2023-06-15 07:28:17 +00:00
// 创建一个业务逻辑层实例
l := logic.NewGetOrderInvoiceLogic(r.Context(), svcCtx)
2023-06-16 02:10:50 +00:00
resp := l.GetOrderInvoice(&req, userinfo)
2023-07-21 06:20:21 +00:00
2023-06-15 07:28:17 +00:00
}
}