feat: update audit platform workspace

This commit is contained in:
wren
2026-05-25 09:50:01 +08:00
parent ba8e93c0d3
commit 68d0b4c878
73 changed files with 12196 additions and 367 deletions
@@ -0,0 +1,17 @@
"""企查查 DTO。"""
from pydantic import BaseModel, Field
class QichachaCompanyQueryDTO(BaseModel):
"""企业查询请求。"""
keyword: str = Field(..., min_length=2, max_length=200, description="企业名称或统一社会信用代码")
forceRefresh: bool = Field(False, description="是否强制刷新缓存")
class QichachaBatchQueryDTO(BaseModel):
"""批量企业查询请求。"""
keywords: list[str] = Field(..., min_length=1, max_length=10, description="企业名称或统一社会信用代码列表")
forceRefresh: bool = Field(False, description="是否强制刷新缓存")