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