| 1234567891011121314151617181920212223242526 |
- <?php
- namespace app\admin\controller\mall;
- use app\admin\logic\ShopHotKeywordsLogic;
- use app\common\controller\AdminController;
- use EasyAdmin\annotation\ControllerAnnotation;
- use EasyAdmin\annotation\NodeAnotation;
- use think\App;
- /**
- * @ControllerAnnotation(title="shop_hot_keywords")
- */
- class ShopHotKeywords extends AdminController
- {
- use \app\admin\traits\Curd;
- public function __construct(App $app)
- {
- parent::__construct($app);
- $this->model = new \app\common\model\ShopHotKeywords();
- }
- }
|