2023-06-12 09:35:37 +00:00
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"fusenapi/server/canteen/internal/logic"
|
|
|
|
"fusenapi/server/canteen/internal/svc"
|
|
|
|
"fusenapi/server/canteen/internal/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
func GetCanteenDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2023-06-15 04:00:32 +00:00
|
|
|
|
2023-06-12 09:35:37 +00:00
|
|
|
var req types.GetCanteenDetailReq
|
2023-07-21 06:20:21 +00:00
|
|
|
|
2023-06-12 09:35:37 +00:00
|
|
|
// 创建一个业务逻辑层实例
|
|
|
|
l := logic.NewGetCanteenDetailLogic(r.Context(), svcCtx)
|
|
|
|
resp := l.GetCanteenDetail(&req, userinfo)
|
2023-07-21 06:20:21 +00:00
|
|
|
|
2023-06-12 09:35:37 +00:00
|
|
|
}
|
|
|
|
}
|