AdministrativeUnit.php 462 B

123456789101112131415161718192021222324252627
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Model;
  4. use Hyperf\DbConnection\Model\Model;
  5. class AdministrativeUnit extends Model
  6. {
  7. /**
  8. * The table associated with the model.
  9. */
  10. protected ?string $table = 'administrative_unit';
  11. /**
  12. * The attributes that are mass assignable.
  13. */
  14. protected array $fillable = [];
  15. /**
  16. * The attributes that should be cast to native types.
  17. */
  18. protected array $casts = [];
  19. }