export declare const getProductDetail: (id: string, params: any) => Promise; /** * @title: 跨日预约获取预约商品报价单 * @description: * @param {string} id * @param {any} params * @return {*} * @Author: WangHan * @Date: 2024-12-23 17:06 */ export declare const postMultiDay: (id: string, params: any) => Promise; /** * 批量查询指定商品的最新价格 * @param params */ export declare const getProductPrice: (params: { ids: number[]; customer_id: number; schedule_date: string; }) => Promise; declare type MultiDayProductPriceParams = { customer_id: number; data: { product_id: number; schedule_date: string; }[]; }; /** * 获取普通商品和跨日预约的价格 * @param params * @returns */ export declare const getNormalAndMultiDayProductPrice: (params: MultiDayProductPriceParams) => Promise; export {};