mirror of
https://github.com/fastapi-practices/fastapi_best_architecture.git
synced 2026-03-13 09:31:31 +08:00
13 lines
292 B
Python
13 lines
292 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
from pydantic import Field
|
|
|
|
from backend.common.schema import SchemaBase
|
|
|
|
|
|
class GetCaptchaDetail(SchemaBase):
|
|
"""验证码详情"""
|
|
|
|
image_type: str = Field(description='图片类型')
|
|
image: str = Field(description='图片内容')
|