bianjunhui 1 tahun lalu
induk
melakukan
8d23cdc2fa
1 mengubah file dengan 0 tambahan dan 27 penghapusan
  1. 0 27
      application/api/controller/AppIndex.php

+ 0 - 27
application/api/controller/AppIndex.php

@@ -1,27 +0,0 @@
-<?php
-
-namespace app\api\controller;
-
-use app\common\controller\Api;
-use think\Db;
-
-/**
- * 首页接口
- */
-class Appindex extends Api
-{
-    protected $noNeedLogin = ['*'];
-    protected $noNeedRight = ['*'];
-
-    /**
-     * 首页
-     *
-     */
-    public function getBanner()
-    {
-
-        $where['status']=1;
-        $banner = Db::name('message_read')->where($where)->select();
-        $this->success('',$banner);
-    }
-}