feat: 期权交易后端 — 下单+自动结算+后台管理

This commit is contained in:
testadmin
2026-04-28 16:05:00 +08:00
parent db5ed78ea9
commit dc19fdb5da
6 changed files with 387 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class OptionPair extends Model
{
protected $table = 'option_pair';
protected $fillable = ['currency_match_id','symbol','coinname','profit_rate','fee_rate','min_amount','max_amount','status','weigh'];
}