Commit 91e82ece by 王召彬

添加活动店铺设置的接口

parent 51a53d60
<?php
/**
* This file is part of Swoft.
*
* @link https://swoft.org
* @document https://doc.swoft.org
* @contact group@swoft.org
* @license https://github.com/swoft-cloud/swoft/blob/master/LICENSE
*/
namespace Hdll\Services\Store\Lib;
use Swoft\Core\ResultInterface;
/**
* The interface of store-settings service
*
* @method ResultInterface deferGetSettings(int $storeId)
*/
interface SettingsInterface
{
/**
* 获取店铺基础设置项
*
* @Number(name="storeId")
* @param int $storeId
* @return array
*/
public function getSettings(int $storeId);
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment