Revert "fix: 各支付渠道默认单笔限额从 1000 提升至 100000,每日限额改为不限"

This reverts commit e1788437c9.
This commit is contained in:
erio
2026-03-08 00:06:23 +08:00
parent e1788437c9
commit 43e116a4f2
3 changed files with 4 additions and 4 deletions

View File

@@ -17,8 +17,8 @@ export class EasyPayProvider implements PaymentProvider {
readonly providerKey = 'easypay';
readonly supportedTypes: PaymentType[] = ['alipay', 'wxpay'];
readonly defaultLimits = {
alipay: { singleMax: 100000, dailyMax: 0 },
wxpay: { singleMax: 100000, dailyMax: 0 },
alipay: { singleMax: 1000, dailyMax: 10000 },
wxpay: { singleMax: 1000, dailyMax: 10000 },
};
async createPayment(request: CreatePaymentRequest): Promise<CreatePaymentResponse> {