SsGroup.php 954 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Http\Models;
  3. use Eloquent;
  4. use Illuminate\Database\Eloquent\Builder;
  5. use Illuminate\Database\Eloquent\Model;
  6. use Illuminate\Support\Carbon;
  7. /**
  8. * SS节点分组
  9. * Class SsNodeGroup
  10. *
  11. * @package App\Http\Models
  12. * @mixin Eloquent
  13. * @property int $id
  14. * @property string $name 分组名称
  15. * @property int $level 分组级别
  16. * @property Carbon|null $created_at
  17. * @property Carbon|null $updated_at
  18. * @method static Builder|SsGroup newModelQuery()
  19. * @method static Builder|SsGroup newQuery()
  20. * @method static Builder|SsGroup query()
  21. * @method static Builder|SsGroup whereCreatedAt($value)
  22. * @method static Builder|SsGroup whereId($value)
  23. * @method static Builder|SsGroup whereLevel($value)
  24. * @method static Builder|SsGroup whereName($value)
  25. * @method static Builder|SsGroup whereUpdatedAt($value)
  26. */
  27. class SsGroup extends Model
  28. {
  29. protected $table = 'ss_group';
  30. protected $primaryKey = 'id';
  31. }