feat:【antd】【ele】【pay 支付】order/refund/transfer 导出的缺失补全

This commit is contained in:
YunaiV
2025-10-06 09:33:43 +08:00
parent fcc6162692
commit 96026b85b5
16 changed files with 180 additions and 237 deletions

View File

@@ -25,20 +25,16 @@ export namespace PayAppApi {
status: number;
}
export interface AppPageReq extends PageParam {
export interface AppPageReqVO extends PageParam {
name?: string;
appKey?: string;
status?: number;
remark?: string;
payNotifyUrl?: string;
refundNotifyUrl?: string;
transferNotifyUrl?: string;
merchantName?: string;
createTime?: Date[];
}
}
/** 查询支付应用列表 */
export function getAppPage(params: PayAppApi.AppPageReq) {
export function getAppPage(params: PayAppApi.AppPageReqVO) {
return requestClient.get<PageResult<PayAppApi.App>>('/pay/app/page', {
params,
});