2024-06-01 14:56:45 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace app\api\controller\store;
|
|
|
|
|
|
|
|
use app\api\lists\store\SystemStoreLists;
|
|
|
|
use app\api\controller\BaseApiController;
|
2024-06-03 11:25:05 +08:00
|
|
|
use app\common\service\pay\PayService;
|
|
|
|
use Webman\Config;
|
2024-06-04 16:51:26 +08:00
|
|
|
use hg\apidoc\annotation as ApiDoc;
|
|
|
|
#[ApiDoc\NotParse()]
|
2024-06-01 14:56:45 +08:00
|
|
|
|
|
|
|
class StoreController extends BaseApiController
|
|
|
|
{
|
2024-06-03 11:31:49 +08:00
|
|
|
|
2024-06-01 14:56:45 +08:00
|
|
|
public function lists()
|
|
|
|
{
|
|
|
|
return $this->dataLists(new SystemStoreLists());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-06-04 16:51:26 +08:00
|
|
|
}
|