💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] ## 列表 ~~~[api] post:/followup/getlist *int:page=默认值1#分页 *int:limit=默认值5#每页显示条数 int:member_id=1#会员id <<< success { "code": 0, "info": "成功", "data":[ { "id": 2, "user_id": 1000, "member_id": 440, "create_date": "2018-11-07", "content": "test跟进" }, {"id": 1, "user_id": 1000, "member_id": 439, "create_date": "2018-11-07",…} ] } <<< error ~~~ ## 详情 ~~~[api] post:/followup/info *int:id=默认值1#id <<< success { "code": 0, "info": "成功", "data":{ "id": 1, "user_id": 1000, "member_id": 439, "create_date": "2018-11-07", "content": "test跟进" } } <<< error ~~~ ## 添加 ~~~[api] post:/followup/add *int:member_id=1 #会员id *string:content=说明#跟进说明 <<< success { "code": 0, "info": "成功", "data":{ "member_id": "440", "content": "test跟进", "user_id": 1000, "create_date": "2018-11-07", "id": "2" } } <<< error ~~~