OA\Post
|
(
path="/admin/user/menuSave",
tags={"用户相关接口"},
summary=" 菜单新增",
@OA\RequestBody(
@OA\MediaType(
mediaType="content-type/json",
@OA\Schema(
@OA\Property(description="租户", property="domain", type="string"),
@OA\Property(description="菜单id", property="menu_id", type="string"),
@OA\Property(description="父id", property="pid", type="string"),
@OA\Property(description="菜单名称", property="menu_name", type="string"),
@OA\Property(description="模块", property="model", type="string"),
@OA\Property(description="前端组件名称", property="compname", type="string"),
@OA\Property(description="前端组件路径", property="comppath", type="string"),
required={"user_name"})
)
),
@OA\Response(
response=200,
description="A list with products"
)
)
|