| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace App\Module\System\Models;
- use UCore\ModelCore;
- /**
- * App\Module\System\Models\Administrator
- *
- * field start
- * @property int $id
- * @property int $parent_id
- * @property int $order
- * @property string $title
- * @property string $icon
- * @property string $uri
- * @property string $extension
- * @property int $show
- * @property \Carbon\Carbon $created_at
- * @property \Carbon\Carbon $updated_at
- * field end
- */
- class AdminMenu extends ModelCore
- {
- protected $table = 'admin_menu';
- // attrlist start
- protected $fillable = [
- 'id',
- 'parent_id',
- 'order',
- 'title',
- 'icon',
- 'uri',
- 'extension',
- 'show',
- ];
- // attrlist end
- }
|