fusenapi/server/product/internal/handler/getlastproductdesignhandler.go

22 lines
484 B
Go
Raw Normal View History

2023-07-17 11:39:35 +00:00
package handler
import (
"net/http"
"fusenapi/server/product/internal/logic"
"fusenapi/server/product/internal/svc"
"fusenapi/server/product/internal/types"
)
2023-07-19 02:48:52 +00:00
func GetLastProductDesignHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
2023-07-17 11:39:35 +00:00
return func(w http.ResponseWriter, r *http.Request) {
2023-07-19 02:48:52 +00:00
var req types.Request
2023-07-21 06:20:21 +00:00
2023-07-17 11:39:35 +00:00
// 创建一个业务逻辑层实例
2023-07-19 02:48:52 +00:00
l := logic.NewGetLastProductDesignLogic(r.Context(), svcCtx)
resp := l.GetLastProductDesign(&req, userinfo)
2023-07-21 06:20:21 +00:00
2023-07-17 11:39:35 +00:00
}
}