提交触发价到trigger_prices资料表

This commit is contained in:
2025-06-19 08:58:09 +07:00
parent 18c58aa976
commit 2677ec3ac0
311 changed files with 1210 additions and 29 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TriggerPrice extends Model
{
protected $table = 'trigger_prices';
protected $fillable = [
'price', 'created_at', 'updated_at',
];
public $timestamps = false;
}