Verify.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Builder;
  4. use Illuminate\Database\Eloquent\Model;
  5. use Illuminate\Database\Eloquent\Relations\HasOne;
  6. /**
  7. * 注册时的验证激活地址
  8. *
  9. * @property int $id
  10. * @property int $type 激活类型:1-自行激活、2-管理员激活
  11. * @property int $user_id 用户ID
  12. * @property string $token 校验token
  13. * @property int $status 状态:0-未使用、1-已使用、2-已失效
  14. * @property \Illuminate\Support\Carbon $created_at 创建时间
  15. * @property \Illuminate\Support\Carbon $updated_at 最后更新时间
  16. * @property-read \App\Models\User|null $user
  17. * @method static Builder|Verify newModelQuery()
  18. * @method static Builder|Verify newQuery()
  19. * @method static Builder|Verify query()
  20. * @method static Builder|Verify type($type)
  21. * @method static Builder|Verify whereCreatedAt($value)
  22. * @method static Builder|Verify whereId($value)
  23. * @method static Builder|Verify whereStatus($value)
  24. * @method static Builder|Verify whereToken($value)
  25. * @method static Builder|Verify whereType($value)
  26. * @method static Builder|Verify whereUpdatedAt($value)
  27. * @method static Builder|Verify whereUserId($value)
  28. * @mixin \Eloquent
  29. */
  30. class Verify extends Model {
  31. protected $table = 'verify';
  32. // 筛选类型
  33. public function scopeType($query, $type) {
  34. return $query->whereType($type);
  35. }
  36. public function user(): HasOne {
  37. return $this->hasOne(User::class, 'id', 'user_id');
  38. }
  39. }