<?php namespace app\api\controller\store; use app\api\lists\store\SystemStoreLists; use app\api\controller\BaseApiController; use app\common\service\pay\PayService; use Webman\Config; use hg\apidoc\annotation as ApiDoc; #[ApiDoc\NotParse()] class StoreController extends BaseApiController { public function lists() { return $this->dataLists(new SystemStoreLists()); } }