|
|
# **基本信息**
|
|
|
```
|
|
|
投资事件
|
|
|
### 投资事件-字段说明
|
|
|
```
|
|
|
class InvesteventReportItem(Item):
|
|
|
"""
|
|
|
投资事件-报道
|
|
|
"""
|
|
|
report_title = Field() # 相关报道标题
|
|
|
report_date = Field() # 相关报道日期
|
|
|
report_url = Field() # 相关报道url
|
|
|
report_domain = Field() # 相关报道域名
|
|
|
|
|
|
class InvesteventInvestorItem(Item):
|
|
|
"""
|
|
|
投资事件-投资机构
|
|
|
"""
|
|
|
round_investor_short_name = Field() # 本轮投资机构简称
|
|
|
round_investor_id = Field() # 本轮投资机构id
|
|
|
investor_type = Field() # 投资机构类型
|
|
|
|
|
|
class InvesteventItem(Item):
|
|
|
"""
|
|
|
投资事件
|
|
|
"""
|
|
|
invest_event_id = Field() # 投融资事件id
|
|
|
finance_company_juzi_id = Field() # 融资公司橘子id
|
|
|
finance_company_short_name = Field() # 融资公司简称
|
|
|
invest_date = Field() # 投资日期
|
|
|
event_title = Field() # 通融资事件标题
|
|
|
event_desc = Field() # 通融资事件描述
|
|
|
finance_rounds = Field() # 融资轮次
|
|
|
finance_currency = Field() # 融资币种
|
|
|
finance_amount = Field() # 融资金额(可为文字)
|
|
|
after_invest_valuation_currency = Field() # 投资后估值币种(可为文字)
|
|
|
after_invest_valuation_amount = Field() # 投资后估值金额(可为文字)
|
|
|
equity_ratio = Field() # 股权占比
|
|
|
report_list = Field() # 投资事件报告列表
|
|
|
investor_list = Field() # 投资机构列表
|
|
|
finance_advisor_short_name = Field() # 融资顾问简称
|
|
|
finance_advisor_id = Field() # 融资顾问id(属于投资机构)
|
|
|
invest_officer_name = Field() # 投资负责人名字
|
|
|
invest_officer_id = Field() # 投资负责人id
|
|
|
```
|
|
|
|
|
|
|
... | ... | |