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