fusenapi/server/inventory/internal/handler/getpickuplisthandler.go

22 lines
478 B
Go
Raw Normal View History

2023-06-29 03:15:42 +00:00
package handler
import (
"net/http"
"fusenapi/server/inventory/internal/logic"
"fusenapi/server/inventory/internal/svc"
"fusenapi/server/inventory/internal/types"
)
func GetPickupListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
var req types.GetPickupListReq
2023-07-21 06:20:21 +00:00
2023-06-29 03:15:42 +00:00
// 创建一个业务逻辑层实例
l := logic.NewGetPickupListLogic(r.Context(), svcCtx)
resp := l.GetPickupList(&req, userinfo)
2023-07-21 06:20:21 +00:00
2023-06-29 03:15:42 +00:00
}
}