1234567891011121314151617181920 |
- <?php
- /**
- * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
- * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
- * @author pillar<ltmn@qq.com>
- * 新闻首页
- */
- namespace app\allwin\controller\home;
- use app\common\controller\Api;
- class Store extends Api{
- /**
- * 商家服务中心
- * @return void
- */
- public function service(int $app,int $id){
- $this->error('商家服务中心');
- }
- }
|