AdminMenu.php 276 B

12345678910111213141516
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\Admin\model;
  4. use think\Model;
  5. use think\facade\Db;
  6. /**
  7. * @mixin \think\Model
  8. */
  9. class AdminMenu extends Model
  10. {
  11. public function GetMenu($condition){
  12. return Db::view("view_menu")->where($condition)->select(); }
  13. }