SsGroup.php 807 B

123456789101112131415161718192021222324252627282930
  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. *
  10. * @property int $id
  11. * @property string $name 分组名称
  12. * @property Carbon|null $created_at
  13. * @property Carbon|null $updated_at
  14. * @method static Builder|SsGroup newModelQuery()
  15. * @method static Builder|SsGroup newQuery()
  16. * @method static Builder|SsGroup query()
  17. * @method static Builder|SsGroup whereCreatedAt($value)
  18. * @method static Builder|SsGroup whereId($value)
  19. * @method static Builder|SsGroup whereName($value)
  20. * @method static Builder|SsGroup whereUpdatedAt($value)
  21. * @mixin Eloquent
  22. */
  23. class SsGroup extends Model {
  24. protected $table = 'ss_group';
  25. protected $primaryKey = 'id';
  26. }