公司介绍 财务数据

This commit is contained in:
Sakurasan
2026-07-06 19:44:40 +08:00
parent cffdea5407
commit 83c88ee945
7 changed files with 1498 additions and 5 deletions
+55
View File
@@ -119,3 +119,58 @@ class ShareLink(BaseModel):
short_code: str
created_at: str
expires_at: Optional[str] = None
class CompanyProfile(BaseModel):
"""公司概况"""
code: str
name: str
fullName: str
englishName: str
boardType: str
industry: str
exchange: str
industryDetail: str
chairman: str
generalManager: str
secretary: str
phone: str
email: str
fax: str
website: str
officeAddress: str
registeredAddress: str
region: str
postalCode: str
registeredCapital: str
unifiedCreditCode: str
employees: str
managementCount: str
lawFirm: str
auditor: str
businessScope: str
companyProfile: str
establishmentDate: str
listingDate: str
listingPrice: str
issuePriceEarningsRatio: str
issueAmount: str
netProceeds: str
issueMethod: str
class FinancialReportItem(BaseModel):
"""单期财务报告"""
reportDate: str
reportType: str
reportDateName: str
noticeDate: str
indicators: dict
class FinancialDataResponse(BaseModel):
"""财务数据响应"""
code: str
name: str
count: int
data: list[FinancialReportItem]