Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
services
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tencent
services
Commits
29d246c0
Commit
29d246c0
authored
Sep 30, 2018
by
王召彬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加查询店铺状态的接口
parent
29cef803
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletions
+11
-1
src/Store/Lib/StoreInterface.php
+11
-1
No files found.
src/Store/Lib/StoreInterface.php
View file @
29d246c0
...
@@ -16,6 +16,7 @@ use Swoft\Core\ResultInterface;
...
@@ -16,6 +16,7 @@ use Swoft\Core\ResultInterface;
* The interface of store service
* The interface of store service
*
*
* @method ResultInterface deferIsCertified(int $storeId)
* @method ResultInterface deferIsCertified(int $storeId)
* @method ResultInterface deferIsNormal(int $storeId)
* @method ResultInterface deferGetStoreByStoreId(int $storeId)
* @method ResultInterface deferGetStoreByStoreId(int $storeId)
* @method ResultInterface deferGetStoreBySellerId(int $sellerId)
* @method ResultInterface deferGetStoreBySellerId(int $sellerId)
* @method ResultInterface deferGetStoreByMobile(int $mobile, array $fields = [])
* @method ResultInterface deferGetStoreByMobile(int $mobile, array $fields = [])
...
@@ -29,11 +30,20 @@ interface StoreInterface
...
@@ -29,11 +30,20 @@ interface StoreInterface
* 查询店铺是否已实名认证(企业认证)
* 查询店铺是否已实名认证(企业认证)
*
*
* @param integer $storeId
* @param integer $storeId
* @return bool
ean
* @return bool
true:认证成功 false:未认证
*/
*/
public
function
isCertified
(
int
$storeId
);
public
function
isCertified
(
int
$storeId
);
/**
/**
* 查询店铺是否正常
*
* @Number(name="storeId")
* @param integer $storeId
* @return bool true:正常,false:冻结
*/
public
function
isNormal
(
int
$storeId
);
/**
* 根据店铺ID获取店铺信息
* 根据店铺ID获取店铺信息
*
*
* @param integer $storeId
* @param integer $storeId
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment