- <?php
- declare (strict_types = 1);
- namespace app\Admin\model;
- use think\Model;
- use think\facade\Db;
- /**
- * @mixin \think\Model
- */
- class AdminMenu extends Model
- {
- public function GetMenu($condition){
- return Db::view("view_menu")->where($condition)->select(); }
- }
|