GET
/api/stock_managers 去调试
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| stock_code | str | 是 | 股票代码 |
| 字段名 | 类型 | 说明 | 默认展示 |
|---|---|---|---|
| stock_code | str | 股票代码 | 是 |
| ann_date | date | 公告日期 | 是 |
| report_date | date | 报告日期 | 是 |
| name | str | 高管姓名 | 是 |
| gender | str | 性别 | 是 |
| lev | str | 岗位类别 | 是 |
| title | str | 岗位 | 是 |
| edu | str | 学历 | 是 |
| national | str | 国籍 | 是 |
| birthday | date | 出生年份 | 是 |
| begin_date | date | 上任日期 | 是 |
| end_date | date | 离任日期 | 是 |
| reward | int | 报酬 | 是 |
| hold_vol | int | 持股数量 | 是 |
| resume | str | 个人简历 | 是 |
{
"msg": "ok",
"code": 0,
"data": [
{
"edu": "硕士",
"lev": "高管",
"name": "石颖",
"title": "法定代表人",
"gender": "M",
"reward": null,
"ann_date": "2024-08-10",
"birthday": null,
"end_date": null,
"hold_vol": null,
"national": "中国",
"begin_date": "2024-07-17",
"stock_code": "sz002160",
"report_date": null
},
{
"edu": "硕士",
"lev": "委员会成员",
"name": "张聪",
"title": "投资委员会委员",
"gender": "M",
"reward": null,
"ann_date": "2024-08-10",
"birthday": null,
"end_date": "2024-08-09",
"hold_vol": null,
"national": "中国",
"begin_date": "2023-11-30",
"stock_code": "sz000950",
"report_date": null
}
],
"count": 2
}