Fix: fix for api
This commit is contained in:
parent
34f331d8d4
commit
ae7a7ac07e
|
|
@ -45,6 +45,16 @@ export async function ordercontrollerCreatenote(
|
|||
});
|
||||
}
|
||||
|
||||
/** 此处后端没有提供注释 GET /order/excel/price */
|
||||
export async function ordercontrollerGetorderspriceinexcel(options?: {
|
||||
[key: string]: any;
|
||||
}) {
|
||||
return request<any>('/order/excel/price', {
|
||||
method: 'GET',
|
||||
...(options || {}),
|
||||
});
|
||||
}
|
||||
|
||||
/** 此处后端没有提供注释 POST /order/getOrderByNumber */
|
||||
export async function ordercontrollerGetorderbynumber(
|
||||
body: string,
|
||||
|
|
|
|||
Loading…
Reference in New Issue