公司介绍 财务数据
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user