feat(develop): 支付调试结果增加响应签名, 去除 requestBody/signInfo 死字段

- DevelopPayResult 重构: payResult + sign(平台私钥签名)
- 去除无用的 requestBody 字段和 signInfo 调试展示
This commit is contained in:
DaxPay Dev
2026-07-01 16:17:53 +08:00
parent 8dd76581bd
commit 2e8ff9bbd3

View File

@@ -71,7 +71,7 @@ export interface PayParam {
title: string;
/** 支付描述 */
description?: string;
/** 支付金额() */
/** 支付金额() */
amount: number;
/** 支付产品编码, 为空时由路由自动选择 */
product?: string;
@@ -117,10 +117,8 @@ export interface DevelopSignResult {
/** 支付调试结果 */
export interface DevelopPayResult {
/** 请求体 JSON */
requestBody?: string;
/** 签名信息 */
signInfo?: DevelopSignResult;
/** 支付结果 */
payResult?: PayResult;
/** 响应签名(平台私钥签名) */
sign?: string;
}