若对pydantic定义的请求体中的字段进行校验, 使用Field类
from pydantic import Field
对路径参数校验, 使用 Path类
对查询参数校验, 使用Query类
from fastapi import APIRouter, Path, Query