This commit is contained in:
cano
2024-03-08 00:58:23 +08:00
parent bebbee4184
commit b14c000bc3
25 changed files with 1681 additions and 8 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace App\Cache\Lock;
class WalletPlatformUserTransactionLock extends BaseLock
{
const WITHDRAW_LOCK_KEY = 'wallet_platform_user_transaction_withdraw_lock:';
public static function getWithdrawKey($id): string
{
return self::WITHDRAW_LOCK_KEY . $id;
}
}