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,12 @@
<?php
namespace App\Structs;
class QueueWalletAddrTransactionChangeStruct
{
const QUEUE_NAME = 'queue_wallet_addr_transaction_change';
const PARAMS = [
'wallet_addr_transaction_id'=>'',
'wallet_addr_transaction_type'=>'',
];
}

View File

@ -0,0 +1,11 @@
<?php
namespace App\Structs;
class QueueWalletPlatformUserWithdrawStruct
{
const QUEUE_NAME = 'wallet_platform_user_transaction_id';
const PARAMS = [
'id'=>'',
];
}