/** * @title: 获取客户列表 * @description: 获取客户列表 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getClients: (params: any) => Promise; /** * @title: 获取服务列表 * @description: 查询服务列表 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getServices: (params: any) => Promise; /** * @title: 获取资源列表 * @description: 资源列表 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getResources: (params: any) => Promise; /** * @title: 获取产品列表 * @description: 查询产品列表 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getProducts: (params: any) => Promise; /** * @title: 获取表单列表 * @description: 获取关联记录表单列表 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getForms: (params: any) => Promise; /** * @title: 获取预约配置 * @description: 获取预约相关配置信息 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getBookingConfig: (params: any) => Promise; /** * @title: 获取宠物信息 * @description: 根据ID获取宠物信息 * @param {string} formId * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getPets: (formId: string, params: any) => Promise; /** * @title: 获取宠物数据 * @description: 获取宠物数据 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getPetsData: (params: any) => Promise; /** * @title: 创建预约 * @description: 创建新的预约记录 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const createBooking: (params: any) => Promise; /** * @title: 获取预约附加服务 * @description: 根据预约ID获取附加服务信息 * @param {string} bookingId * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getAddonsByOrderId: (bookingId: string, params: any) => Promise; /** * @title: 保存预约附加服务 * @description: 保存预约的附加服务信息 * @param {string} bookingId * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const saveAddonsByOrderId: (bookingId: string, params: any) => Promise; /** * @title: 获取预约详情 * @description: 获取预约详细信息 * @param {number} bookingId * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getBookingDetail: (bookingId: number, params?: any) => Promise; /** * @title: 编辑预约状态 * @description: 更新预约状态 * @param {string} bookingId * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const editBookingStatus: (bookingId: string, params: any) => Promise; /** * @title: 编辑预约信息 * @description: 更新预约信息 * @param {string} bookingId * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const editBooking: (bookingId: string, params: any) => Promise; /** * @title: 获取预约备注 * @description: 获取预约相关备注信息 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getNotesByOrder: (params: any) => Promise; /** * @title: 添加预约备注 * @description: 添加预约相关备注 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const addNotesByOrder: (params: any) => Promise; /** * @title: 编辑预约备注 * @description: 更新预约备注信息 * @param {string} bookingId * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const editNoteByOrder: (bookingId: string, params: any) => Promise; /** * @title: 删除预约备注 * @description: 删除预约相关备注 * @param {string} bookingId * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const removeNoteByOrder: (bookingId: string, params: any) => Promise; /** * @title: 保存预约表单数据 * @description: 保存预约相关的表单数据 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const saveBookingFormData: (params: any) => Promise; /** * @title: 获取支付列表 * @description: 获取支付相关列表数据 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getPaymentList: (params: any) => Promise; /** * @title: 编辑订单备注 * @description: 更新订单备注信息 * @param {string} bookingId * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const editOrderNote: (bookingId: string, params: any) => Promise; /** * @title: 获取退款信息 * @description: 获取退款相关信息 * @param {string} bookingId * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getRefundInfo: (bookingId: string, params: any) => Promise; /** * @title: 创建活动预约 * @description: 创建新的活动预约记录 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const createEventBooking: (params: any) => Promise; /** * @title: 获取活动预约详情 * @description: 获取活动预约详细信息 * @param {number} bookingId * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getEventBookingDetail: (bookingId: number, params?: any) => Promise; /** * @title: 编辑活动预约 * @description: 更新活动预约信息 * @param {string} bookingId * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const editEventBooking: (bookingId: string, params: any) => Promise; /** * @title: 获取定金显示配置 * @description: 获取定金相关显示配置 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getDepositShow: (params: any) => Promise; /** * @title: 获取表单记录 * @description: 获取表单记录数据 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getFormRecords: (params: any) => Promise; /** * @title: 获取预约列表 * @description: 获取预约列表数据 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getBookingList2: (params: any) => Promise; /** * @title: 获取订单信息 * @description: 根据机器码获取订单信息 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getOrderInfoByCode: (params: any) => Promise; /** * @title: 获取ES客户数据 * @description: 从ES获取客户数据 * @param {any} params * @return {*} * @Author: cong.shao * @Date: 2025-04-24 16:28 */ export declare const getClientsEs: (params: any) => Promise; /** * 作废2.0预约订单 * @param order_id */ export declare const voidAppointment: (order_id: number) => Promise; export declare const getProductList: (params: any) => Promise; export declare const getOrderDetail: (order_id: number, params?: any) => Promise;