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

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
erio
2026-03-08 00:03:01 +08:00
parent 2df040e9b9
commit e1788437c9
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: 1000, dailyMax: 10000 },
wxpay: { singleMax: 1000, dailyMax: 10000 },
alipay: { singleMax: 100000, dailyMax: 0 },
wxpay: { singleMax: 100000, dailyMax: 0 },
};
async createPayment(request: CreatePaymentRequest): Promise<CreatePaymentResponse> {