OperationalLogModel.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace App\Models\Fpdx;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Models\Fpdx\OperationalLogModel
  6. *
  7. * @property int $id
  8. * @property int $stage_id
  9. * @property int $uid
  10. * @property string $type
  11. * @property string $content
  12. * @property \Illuminate\Support\Carbon $created_at
  13. * @property \Illuminate\Support\Carbon $updated_at
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\OperationalLogModel newModelQuery()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\OperationalLogModel newQuery()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\OperationalLogModel query()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\OperationalLogModel whereContent($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\OperationalLogModel whereCreatedAt($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\OperationalLogModel whereId($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\OperationalLogModel whereStageId($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\OperationalLogModel whereType($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\OperationalLogModel whereUid($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\OperationalLogModel whereUpdatedAt($value)
  24. * @mixin \Eloquent
  25. */
  26. class OperationalLogModel extends Model
  27. {
  28. //
  29. protected $table = "fpdx_pair_operational_logs";
  30. protected $dateFormat = 'U';
  31. protected $fillable = ['id', 'stage_id', 'uid', 'type', 'content'];
  32. }