ShopHotKeywords.php 531 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace app\admin\controller\mall;
  3. use app\admin\logic\ShopHotKeywordsLogic;
  4. use app\common\controller\AdminController;
  5. use EasyAdmin\annotation\ControllerAnnotation;
  6. use EasyAdmin\annotation\NodeAnotation;
  7. use think\App;
  8. /**
  9. * @ControllerAnnotation(title="shop_hot_keywords")
  10. */
  11. class ShopHotKeywords extends AdminController
  12. {
  13. use \app\admin\traits\Curd;
  14. public function __construct(App $app)
  15. {
  16. parent::__construct($app);
  17. $this->model = new \app\common\model\ShopHotKeywords();
  18. }
  19. }