| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace app\admin\controller\mall;
- use app\admin\traits\Curd;
- use app\common\controller\AdminController;
- use app\common\model\ShopGoodsMenu;
- use app\common\model\ShopGoodsMenuModel;
- use app\common\model\ShopGoodsModel;
- use EasyAdmin\annotation\ControllerAnnotation;
- use EasyAdmin\annotation\NodeAnotation;
- use think\App;
- use think\Model;
- /**
- * Class Admin
- * @package app\admin\controller\mall
- * @ControllerAnnotation(title="商品分类管理")
- */
- class GoodsMenu extends AdminController
- {
- use Curd;
- public function __construct(App $app)
- {
- parent::__construct($app);
- $this->model = new ShopGoodsMenuModel();
- }
- }
|