ShopBuynote.php 490 B

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