企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ## 待办信息 ~~~[api] post:/backlog/info *int:id=默认值1#id <<< success { "code": 0, "info": "成功", "data":{ "id": 1, "target_num": 6, "target_reach": "da", "is_send": 1, "content": "teate", "state": 1, "type":1 } } <<< error ~~~  ## 待办列表 ~~~[api] post:/backlog/getlist *int:type=1 #0 生日提醒,1会员待办,2售后待办 *int:page=1#页码 *int:limit=10#每页显示个数 <<< success { "code": 0, "info": "成功", "data":[ { "id": 2, "target_num": 4, "target_reach": "daasdf", "is_send": 0, "content": "", "state": 1, "type":1 }, { "id": 1, "target_num": 6, "target_reach": "da", "is_send": 1, "content": "teate", "state": 1 "type":1 } ] }<<< error  ~~~  ## 添加待办 ~~~[api] post:/backlog/add *int:target_num=3#售后天数 *string:target_reach=一定要完成#达成目标 *int:is_send=-1#发送消息,0不发送,1改送,2发送并完成待办 string:content=消息内容#消息内容 当is_seng==1或2时必传些内容 *int:type=-1#0生日待办,1会员待办,2售后待办 <<< success { "code": 0, "info": "成功", "data":{ "target_num": "6", "target_reach": "da", "is_send": "1", "content": "teate", "id": "1" "type":1 } }<<< error  ~~~  ## 编辑待办 ~~~[api] post:/backlog/edit *int:id=1#待办id *int:target_num=3#售后天数 *string:target_reach=一定要完成#达成目标 *int:is_send=-1#发送消息,0不发送,1改送,2发送并完成待办 string:content=消息内容#消息内容 当is_seng==1或2时必传些内容 *int:type=-1#0生日待办,1会员待办,2售后待办 <<< success { "code": 0, "info": "成功", "data":{ "target_num": "6", "target_reach": "da", "is_send": "1", "content": "teate", "id": "1" "type":1 } }<<< error  ~~~  ## 删除售后待办 ~~~[api] post:/backlog/del *int:id=1#Id <<< success { "code": 0, "info": "成功", "data": 0 } <<< error  ~~~