CheckLog.php 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace App\Models;
  3. /**
  4. * App\Models\CheckLog
  5. *
  6. * @property int $id 主键
  7. * @property \Illuminate\Support\Carbon $created_at 创建时间
  8. * @property \Illuminate\Support\Carbon|null $updated_at 更新时间
  9. * @property int $partner_id 卡片id
  10. * @property string $log 日志
  11. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CheckLog newModelQuery()
  12. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CheckLog newQuery()
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CheckLog query()
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CheckLog whereCreatedAt($value)
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CheckLog whereId($value)
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CheckLog whereLog($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CheckLog wherePartnerId($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CheckLog whereUpdatedAt($value)
  19. * @mixin \Eloquent
  20. */
  21. class CheckLog extends Model
  22. {
  23. protected $table = "check_logs";
  24. protected $dateFormat = 'U';
  25. protected $fillable = ['id', 'created_at', 'updated_at', 'partner_id', 'log'];
  26. }