feat: pay demo

This commit is contained in:
xingyu4j
2025-05-27 14:20:07 +08:00
parent 48a593749b
commit 3b25efcc7e
12 changed files with 722 additions and 117 deletions

View File

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