package xunji_service import ( "net/http" "github.com/zeromicro/go-zero/rest/httpx" "wechat-api/internal/logic/xunji_service" "wechat-api/internal/svc" "wechat-api/internal/types" ) // swagger:route post /xunji_service/update xunji_service UpdateXunjiService // // Update xunji service information | 更新XunjiService // // Update xunji service information | 更新XunjiService // // Parameters: // + name: body // require: true // in: body // type: XunjiServiceInfo // // Responses: // 200: BaseMsgResp func UpdateXunjiServiceHandler(svcCtx *svc.ServiceContext) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { var req types.XunjiServiceInfo if err := httpx.Parse(r, &req, true); err != nil { httpx.ErrorCtx(r.Context(), w, err) return } l := xunji_service.NewUpdateXunjiServiceLogic(r.Context(), svcCtx) resp, err := l.UpdateXunjiService(&req) if err != nil { httpx.ErrorCtx(r.Context(), w, err) } else { httpx.OkJsonCtx(r.Context(), w, resp) } } }