fix : coupon

This commit is contained in:
2025-03-31 16:55:21 +08:00
parent 775b4d8cb2
commit f26160d48d
2 changed files with 25 additions and 3 deletions

View File

@@ -64,4 +64,13 @@ class ApiRedisKey
{
return 'lock:pay:user_id:'. $userId;
}
/**
* @param int $userId
* @return string
*/
public static function refundLock(int $userId)
{
return 'lock:refund:user_id:'. $userId;
}
}