/* eslint-disable */ // @ts-ignore import request from './request'; import * as API from './types'; /** * 绑定渠道账号 绑定渠道账号 * 绑定渠道账号 * POST /hotelStaff/configChannel/binding */ export function hotelStaffConfigChannelBindingUsingPost({ body, options, }: { body: API.PcConfigChannel; options?: { [key: string]: unknown }; }) { return request('/hotelStaff/configChannel/binding', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** * 创建账号渠道 创建账号渠道 * 创建账号渠道 * POST /hotelStaff/configChannel/createPcConfigChannel */ export function hotelStaffConfigChannelCreatePcConfigChannelUsingPost({ body, options, }: { body: API.PcConfig; options?: { [key: string]: unknown }; }) { return request( '/hotelStaff/configChannel/createPcConfigChannel', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), } ); } /** * 查询配置与渠道关系列表 查询配置与渠道关系列表 * 查询配置与渠道关系列表 * POST /hotelStaff/configChannel/pageList */ export function hotelStaffConfigChannelPageListUsingPost({ options, }: { options?: { [key: string]: unknown }; }) { return request( '/hotelStaff/configChannel/pageList', { method: 'POST', ...(options || {}), } ); }