Store.php 472 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 新闻首页
  7. */
  8. namespace app\allwin\controller\home;
  9. use app\common\controller\Api;
  10. class Store extends Api{
  11. /**
  12. * 商家服务中心
  13. * @return void
  14. */
  15. public function service(int $app,int $id){
  16. $this->error('商家服务中心');
  17. }
  18. }