34 lines
804 B
Go
34 lines
804 B
Go
// Code scaffolded by goctl. Safe to edit.
|
|
// goctl 1.10.1
|
|
|
|
package myPlant
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/zeromicro/go-zero/rest/httpx"
|
|
"sundynix-micro-go/app/plant/api/internal/logic/myPlant"
|
|
"sundynix-micro-go/app/plant/api/internal/svc"
|
|
"sundynix-micro-go/app/plant/api/internal/types"
|
|
"sundynix-micro-go/common/response"
|
|
)
|
|
|
|
// 植物详情
|
|
func GetPlantDetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
var req types.IdPathReq
|
|
if err := httpx.Parse(r, &req); err != nil {
|
|
response.Fail(w, err.Error())
|
|
return
|
|
}
|
|
|
|
l := myPlant.NewGetPlantDetailLogic(r.Context(), svcCtx)
|
|
resp, err := l.GetPlantDetail(&req)
|
|
if err != nil {
|
|
response.Fail(w, err.Error())
|
|
} else {
|
|
response.OkWithData(w, resp)
|
|
}
|
|
}
|
|
}
|