_ide_helper_models.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. // @formatter:off
  3. /**
  4. * A helper file for your Eloquent Models
  5. * Copy the phpDocs from this file to the correct Model,
  6. * And remove them from this file, to prevent double declarations.
  7. *
  8. * @author Barry vd. Heuvel <barryvdh@gmail.com>
  9. */
  10. namespace App\Models{
  11. /**
  12. * App\Models\StatProduct
  13. *
  14. * @property int $id
  15. * @property string $product_id 产品ID
  16. * @property string $user_id 用户ID
  17. * @property \Illuminate\Support\Carbon|null $updated_at
  18. * @property \Illuminate\Support\Carbon|null $deleted_at
  19. * @property \Illuminate\Support\Carbon|null $created_at
  20. * @method static \Illuminate\Database\Eloquent\Builder|StatProduct newModelQuery()
  21. * @method static \Illuminate\Database\Eloquent\Builder|StatProduct newQuery()
  22. * @method static \Illuminate\Database\Query\Builder|StatProduct onlyTrashed()
  23. * @method static \Illuminate\Database\Eloquent\Builder|StatProduct query()
  24. * @method static \Illuminate\Database\Eloquent\Builder|StatProduct whereCreatedAt($value)
  25. * @method static \Illuminate\Database\Eloquent\Builder|StatProduct whereDeletedAt($value)
  26. * @method static \Illuminate\Database\Eloquent\Builder|StatProduct whereId($value)
  27. * @method static \Illuminate\Database\Eloquent\Builder|StatProduct whereProductId($value)
  28. * @method static \Illuminate\Database\Eloquent\Builder|StatProduct whereUpdatedAt($value)
  29. * @method static \Illuminate\Database\Eloquent\Builder|StatProduct whereUserId($value)
  30. * @method static \Illuminate\Database\Query\Builder|StatProduct withTrashed()
  31. * @method static \Illuminate\Database\Query\Builder|StatProduct withoutTrashed()
  32. * @mixin \Eloquent
  33. * @property-read \App\Models\Product|null $product
  34. * @property-read \App\Models\User|null $user
  35. */
  36. // class StatProduct extends \Eloquent {}
  37. }