... | ... | @@ -120,12 +120,56 @@ class Person { |
|
|
* type="string"
|
|
|
* )
|
|
|
* ),
|
|
|
* @OA\Parameter(
|
|
|
* name="iv",
|
|
|
* in="query",
|
|
|
* description="解密参数",
|
|
|
* @OA\Schema(
|
|
|
* type="string"
|
|
|
* @OA\Response(
|
|
|
* response=200,
|
|
|
* description="OK"
|
|
|
* )
|
|
|
* )
|
|
|
*/
|
|
|
````
|
|
|
#### Post方法
|
|
|
````
|
|
|
|
|
|
/**
|
|
|
* @OA\Post(
|
|
|
* path="/mp/fc/action-ignore_item",
|
|
|
* tags={"实地认证小程序"},
|
|
|
* summary="提交实地认证放弃项目,真实地址/mp/fc",
|
|
|
* @OA\RequestBody(
|
|
|
* @OA\MediaType(
|
|
|
* mediaType="application/x-www-form-urlencoded",
|
|
|
* @OA\Schema(
|
|
|
* @OA\Property(
|
|
|
* property="action",
|
|
|
* type="string",
|
|
|
* default="submit_certification",
|
|
|
* description="ignore_item"
|
|
|
* ),
|
|
|
* @OA\Property(
|
|
|
* property="appoint_id",
|
|
|
* default="1",
|
|
|
* type="integer",
|
|
|
* description="预约id"
|
|
|
* ),
|
|
|
* @OA\Property(
|
|
|
* property="openid",
|
|
|
* type="string",
|
|
|
* default="oKlGX5OlIfu3OaE21MXFxCOodexE",
|
|
|
* description="微信openid"
|
|
|
* ),
|
|
|
* @OA\Property(
|
|
|
* property="main_type",
|
|
|
* default="1",
|
|
|
* type="string",
|
|
|
* description="1为环境,2为实力"
|
|
|
* ),
|
|
|
* @OA\Property(
|
|
|
* property="item_uuid",
|
|
|
* default="1",
|
|
|
* type="integer",
|
|
|
* description="预约uuid"
|
|
|
* )
|
|
|
* )
|
|
|
* )
|
|
|
* ),
|
|
|
* @OA\Response(
|
... | ... | @@ -134,4 +178,4 @@ class Person { |
|
|
* )
|
|
|
* )
|
|
|
*/
|
|
|
```` |
|
|
```` |
|
|
\ No newline at end of file |