| 1234567891011121314 |
- <?php
- namespace App\Models;
- class YuebaoLog extends BaseModel
- {
- protected $table = 'yuebao_log';
- protected $fillable = ['user_id','item_id','amount','type'];
- protected $hidden = [];
-
- public $timestamps = true;
- protected $dateFormat = 'U'; // U 代表 UNIX 时间戳(int)
-
- }
|