You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
549 B
30 lines
549 B
<?php
|
|
|
|
|
|
namespace app\admin\controller\mall;
|
|
|
|
|
|
use app\admin\model\MallCate;
|
|
use app\admin\traits\Curd;
|
|
use app\common\controller\AdminController;
|
|
use EasyAdmin\annotation\ControllerAnnotation;
|
|
use EasyAdmin\annotation\NodeAnotation;
|
|
use think\App;
|
|
|
|
/**
|
|
* Class Admin
|
|
* @package app\admin\controller\system
|
|
* @ControllerAnnotation(title="商品分类管理")
|
|
*/
|
|
class Cate extends AdminController
|
|
{
|
|
|
|
use Curd;
|
|
|
|
public function __construct(App $app)
|
|
{
|
|
parent::__construct($app);
|
|
$this->model = new MallCate();
|
|
}
|
|
|
|
}
|