32 lines
860 B
PHP
32 lines
860 B
PHP
<?php
|
|
/**
|
|
* SaaSMall商城系统 - 团队十年电商经验汇集巨献!
|
|
* =========================================================
|
|
* Copy right 2019-2029 上海牛之云网络科技有限公司, 保留所有权利。
|
|
* ----------------------------------------------
|
|
* 官方网址: https://www.gobuysaas.com
|
|
* =========================================================
|
|
*/
|
|
|
|
namespace addon\store\shopapi\controller;
|
|
|
|
use app\model\store\Store as StoreModel;
|
|
|
|
/**
|
|
* 门店控制器
|
|
*/
|
|
class Store extends BaseStoreApi
|
|
{
|
|
/**
|
|
* 获取门店信息
|
|
* @return false|string
|
|
* @throws \app\exception\ApiException
|
|
*/
|
|
public function info()
|
|
{
|
|
$store_model = new StoreModel();
|
|
$store_info = $store_model->getStoreInfo([ [ 'store_id', '=', $this->store_id ] ]);
|
|
|
|
return $this->response($store_info);
|
|
}
|
|
} |