YuebaoLog.php 304 B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. class YuebaoLog extends BaseModel
  4. {
  5. protected $table = 'yuebao_log';
  6. protected $fillable = ['user_id','item_id','amount','type'];
  7. protected $hidden = [];
  8. public $timestamps = true;
  9. protected $dateFormat = 'U'; // U 代表 UNIX 时间戳(int)
  10. }