refactor(payment): 移除支付产品配置 API 的 configured 死字段

This commit is contained in:
DaxPay Dev
2026-07-19 15:02:03 +08:00
parent 9659d9d3c4
commit 89ddc1d6fd

View File

@@ -42,8 +42,6 @@ export interface PayProductConfigResult extends BaseEntity {
sandboxSupport?: boolean;
/** 生效环境: prod/sandbox */
activeEnv?: string;
/** 是否已配置参数 */
configured?: boolean;
/** 是否为服务商模式true=服务商, false=直连) */
isv?: boolean;
}
@@ -53,7 +51,6 @@ export interface PayProductConfigParam {
product?: string;
channel?: string;
activeEnv?: string;
configured?: boolean;
remark?: string;
}