12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace app\admin\annotation;
- use mindplay\annotations\Annotation;
- class AdminMenuAnnotation extends Annotation
- {
- public $remark = '';
- public $icon = '';
- public $name = '';
- public $param = '';
- public $parent = '';
- public $display = false;
- public $order = 10000;
- public $hasView = true;
-
- public function initAnnotation(array $properties)
- {
- parent::initAnnotation($properties);
- }
- }
|