BTCoinmt
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
511 B

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class KlineData extends Model
{
public $timestamps = false;
protected $table = 'data_ceb';
protected $fillable = [
'pid', 'Symbol', 'Date', 'datetime', 'Name', 'Open', 'High', 'Low', 'Close', 'LastClose', 'Price2', 'Price3', 'Open_Int',
'Volume', 'Amount', 'is_1min', 'is_5min', 'is_15min', 'is_30min', 'is_1h', 'is_2h', 'is_4h', 'is_6h', 'is_12h', 'is_day', 'is_week'
];
protected $hidden = ['id'];
}