feat: 项目基础框架+配置+Kernel

This commit is contained in:
testadmin
2026-04-29 05:35:00 +08:00
parent 6ce7adcbfb
commit 9a6151fce3
5082 changed files with 437062 additions and 0 deletions
+68
View File
@@ -0,0 +1,68 @@
<?php
namespace App\Jobs;
use App\CurrencyMatch;
use App\CurrencyQuotation;
use App\Logic\CoinTradeLogic;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Foundation\Bus\Dispatchable;
class CoinTradeHandel implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $params;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct($params)
{
$this->params = $params;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$currency_quotation = CurrencyQuotation::where('match_id', 46)->first();
if(!empty($currency_quotation)){
$currency_id = $currency_quotation->currency_id;
$legal_id = $currency_quotation->legal_id;
$now_price = $currency_quotation->now_price;
CoinTradeLogic::matchBuyTrade($currency_id,$legal_id,$now_price);
CoinTradeLogic::matchSellTrade($currency_id,$legal_id,$now_price);
}
extract($this->params);
$match = CurrencyMatch::where([
'legal_id' => $legal_id,
'currency_id' => $currency_id,
'open_coin_trade' => 1,
'coin_trade_success' => 1
])->first();
if(!$match){
return;
}
if (bc_comp($now_price, 0) > 0) {
CoinTradeLogic::matchBuyTrade($currency_id,$legal_id,$now_price);
CoinTradeLogic::matchSellTrade($currency_id,$legal_id,$now_price);
// LeverTransaction::newPrice($legal_id, $currency_id, $now_price);
// } else {
}
}
}