LhcNumber.php 285 B

123456789101112
  1. <?php
  2. namespace App\Models;
  3. class LhcNumber extends BaseModel
  4. {
  5. protected $table = 'lhc_number';
  6. protected $fillable = ['game','gameplay','number','odds','updated_by'];
  7. public $timestamps = true;
  8. protected $dateFormat = 'U'; // U 代表 UNIX 时间戳(int)
  9. }