| 123456789101112 |
- <?php
- namespace App\Models;
- class LhcNumber extends BaseModel
- {
- protected $table = 'lhc_number';
- protected $fillable = ['game','gameplay','number','odds','updated_by'];
-
- public $timestamps = true;
- protected $dateFormat = 'U'; // U 代表 UNIX 时间戳(int)
- }
|