|
|
# **基本信息**
|
|
|
```
|
|
|
投资机构
|
|
|
### 投资机构-字段说明
|
|
|
```
|
|
|
class InvestfirmBelongListItem(Item):
|
|
|
"""
|
|
|
投资机构-所在榜单
|
|
|
"""
|
|
|
list_date = Field() # 榜单日期(后续可以根据这个日期排名)
|
|
|
list_title = Field() # 榜单标题
|
|
|
|
|
|
class InvestfirmItem(Item):
|
|
|
"""
|
|
|
投资机构-主表
|
|
|
"""
|
|
|
invest_firm_id = Field() # 桔子机构ID
|
|
|
invest_firm_short_name = Field() # 机构简称
|
|
|
invest_firm_ic_fullname = Field() # 机构工商全称
|
|
|
invest_firm_logo_url = Field() # 机构logo
|
|
|
invest_firm_desc = Field() # 机构简介
|
|
|
invest_firm_establish_date = Field() # 成立日期
|
|
|
invest_firm_type = Field() # 类型
|
|
|
capital_management_scale = Field() # 管理资本规模
|
|
|
capital_management_composition = Field() # 管理资本构成
|
|
|
single_project_invest_scale = Field() # 单个项目投资规模
|
|
|
focus_area = Field() # 关注领域
|
|
|
invest_rounds = Field() # 投资轮次
|
|
|
belong_list = Field() # 所在榜单
|
|
|
official_website = Field() # 官网
|
|
|
wechat_official_account = Field() # 微信公众号
|
|
|
phone = Field() # 联系电话
|
|
|
email = Field() # 邮箱
|
|
|
investor_number = Field() #(怀疑是)投资人电话
|
|
|
|
|
|
|
|
|
class InvestfirmMemberItem(Item):
|
|
|
"""
|
|
|
投资机构-机构成员
|
|
|
"""
|
|
|
rank = Field() # 页面展示顺序
|
|
|
number_id = Field() # 桔子人员id
|
|
|
name = Field() # 姓名
|
|
|
invest_firm_id = Field() # 公司id
|
|
|
company_type = Field() # 公司类型(这个字段是多余的,等同于invest_firm_type)
|
|
|
company_short_name = Field()
|
|
|
position = Field() # 职位
|
|
|
is_demission = Field() # 是否离职
|
|
|
individual_resume = Field() # 个人简介
|
|
|
|
|
|
|
|
|
class InvestfirmAddressItem(Item):
|
|
|
"""
|
|
|
投资机构-联系信息
|
|
|
"""
|
|
|
invest_firm_id = Field() # 桔子机构id
|
|
|
invest_firm_short_name = Field() # 机构简称
|
|
|
office_province = Field() # 办公地址-省
|
|
|
office_city = Field() # 办公地址-市
|
|
|
office_address = Field() # 办公地址
|
|
|
office_phone = Field() # 办公地址联系电话
|
|
|
```
|
|
|
|
|
|
|
... | ... | |