AdminMenu.php 776 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace App\Module\System\Models;
  3. use UCore\ModelCore;
  4. /**
  5. * App\Module\System\Models\Administrator
  6. *
  7. * field start
  8. * @property int $id
  9. * @property int $parent_id
  10. * @property int $order
  11. * @property string $title
  12. * @property string $icon
  13. * @property string $uri
  14. * @property string $extension
  15. * @property int $show
  16. * @property \Carbon\Carbon $created_at
  17. * @property \Carbon\Carbon $updated_at
  18. * field end
  19. */
  20. class AdminMenu extends ModelCore
  21. {
  22. protected $table = 'admin_menu';
  23. // attrlist start
  24. protected $fillable = [
  25. 'id',
  26. 'parent_id',
  27. 'order',
  28. 'title',
  29. 'icon',
  30. 'uri',
  31. 'extension',
  32. 'show',
  33. ];
  34. // attrlist end
  35. }