| | |
| | | }); |
| | | }; |
| | | |
| | | export const GetHistoryGroups = async (params, req: any = request) => { |
| | | export const GetHistoryGroups = async ( req: any = request) => { |
| | | return req({ |
| | | url: '/history/get_history_groups', |
| | | method: 'POST', |
| | | data: params, |
| | | headers: { |
| | | 'Content-Type': 'application/x-www-form-urlencoded', |
| | | }, |
| | |
| | | method: 'POST', |
| | | }); |
| | | }; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * @summary 设置历史对话状态(未设置:NULL,顶1,踩0 |
| | | */ |
| | | export const SetHistoryAnswerState = async (params, req:any = request) => { |
| | | return req({ |
| | | url: "/history/set_history_answer_state", |
| | | method: "POST", |
| | | data: params, |
| | | headers: { |
| | | 'Content-Type': 'application/x-www-form-urlencoded', |
| | | }, |
| | | }); |
| | | }; |