提交触发价到trigger_prices资料表
This commit is contained in:
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
@@ -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;
|
||||
}
|
||||
Executable → Regular
Executable → Regular
Executable → Regular
Reference in New Issue
Block a user