Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-store
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
base_platform_enterprise
gic-store
Commits
0fb92ff8
Commit
0fb92ff8
authored
Sep 10, 2020
by
zhiwj
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'developer' of
http://115.159.76.241/base_platform_enterprise/gic-store
into developer
parents
48a7dca9
5fea959c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
45 deletions
+45
-45
StoreWidgetApiService.java
...ain/java/com/gic/store/service/StoreWidgetApiService.java
+45
-45
No files found.
gic-store-api/src/main/java/com/gic/store/service/StoreWidgetApiService.java
View file @
0fb92ff8
...
...
@@ -10,9 +10,9 @@ import com.gic.store.dto.StoreWidgetDTO;
import
java.util.List
;
/**
*
*
* @ClassName: StoreWidgetApiService
* @Description:
* @Description:
* @author zhiwj
* @date 2020-09-09 16:08
*/
...
...
@@ -53,142 +53,142 @@ public interface StoreWidgetApiService {
ServiceResponse
<
StoreWidgetDTO
>
getStoreWidget
(
Integer
id
);
/**
* 更新选择器的权限内容
* 更新选择器的权限内容
* @Title: updateAuth
* @Description:
* @author zhiwj
* @Description:
* @author zhiwj
* @param storeWidgetDTO
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
* @throws
*/
ServiceResponse
<
Integer
>
updateAuth
(
StoreWidgetDTO
storeWidgetDTO
);
/**
* 通过门店控件id查询门店
* 通过门店控件id查询门店
* @Title: listStoreByStoreWidgetId
* @Description:
* @author zhiwj
* @Description:
* @author zhiwj
* @param enterpriseId
* @param storeWidgetId
* @param pageNum
* @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.store.dto.StoreDTO>>
* @throws
* @throws
*/
ServiceResponse
<
Page
<
StoreDTO
>>
listStoreByStoreWidgetId
(
Integer
enterpriseId
,
Integer
storeWidgetId
,
int
pageNum
,
int
pageSize
);
/**
* listStoreIdByStoreWidgetId
* listStoreIdByStoreWidgetId
* @Title: listStoreIdByStoreWidgetId
* @Description:
* @author zhiwj
* @Description:
* @author zhiwj
* @param enterpriseId
* @param storeWidgetId
* @param pageNum
* @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<java.lang.Integer>>
* @throws
* @throws
*/
ServiceResponse
<
Page
<
Integer
>>
listStoreIdByStoreWidgetId
(
Integer
enterpriseId
,
Integer
storeWidgetId
,
int
pageNum
,
int
pageSize
);
/**
* listStoreInfoIdByStoreWidgetId
* listStoreInfoIdByStoreWidgetId
* @Title: listStoreInfoIdByStoreWidgetId
* @Description:
* @author zhiwj
* @Description:
* @author zhiwj
* @param enterpriseId
* @param storeWidgetId
* @param pageNum
* @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<java.lang.Integer>>
* @throws
* @throws
*/
ServiceResponse
<
Page
<
Integer
>>
listStoreInfoIdByStoreWidgetId
(
Integer
enterpriseId
,
Integer
storeWidgetId
,
int
pageNum
,
int
pageSize
);
/**
* listStoreIdByStoreWidgetId
* listStoreIdByStoreWidgetId
* @Title: listStoreIdByStoreWidgetId
* @Description:
* @author zhiwj
* @Description:
* @author zhiwj
* @param enterpriseId
* @param storeWidgetId
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<java.lang.Integer>>
* @throws
* @throws
*/
ServiceResponse
<
List
<
Integer
>>
listStoreIdByStoreWidgetId
(
Integer
enterpriseId
,
Integer
storeWidgetId
);
/**
* listStoreInfoIdByStoreWidgetId
* listStoreInfoIdByStoreWidgetId
* @Title: listStoreInfoIdByStoreWidgetId
* @Description:
* @author zhiwj
* @Description:
* @author zhiwj
* @param enterpriseId
* @param storeWidgetId
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<java.lang.Integer>>
* @throws
* @throws
*/
ServiceResponse
<
List
<
Integer
>>
listStoreInfoIdByStoreWidgetId
(
Integer
enterpriseId
,
Integer
storeWidgetId
);
/**
* listBrandIdByStoreWidgetId
* listBrandIdByStoreWidgetId
* @Title: listBrandIdByStoreWidgetId
* @Description:
* @author zhiwj
* @Description:
* @author zhiwj
* @param enterpriseId
* @param storeWidgetId
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.store.dto.StoreBrandDTO>>
* @throws
* @throws
*/
ServiceResponse
<
List
<
StoreBrandDTO
>>
listBrandIdByStoreWidgetId
(
Integer
enterpriseId
,
Integer
storeWidgetId
);
/**
* 判断门店是否在门店控件里
* 判断门店是否在门店控件里
* @Title: exist
* @Description:
* @author zhiwj
* @Description:
* @author zhiwj
* @param enterpriseId
* @param storeWidgetId
* @param storeId
* @return com.gic.api.base.commons.ServiceResponse
* @throws
* @throws
*/
ServiceResponse
exist
(
Integer
enterpriseId
,
Integer
storeWidgetId
,
Integer
storeId
);
/**
* exist 判断门店是否在门店控件里
* @Title: exist
* @Description:
* @author zhiwj
* @Description:
* @author zhiwj
* @param enterpriseId
* @param storeWidgetId
* @param storeId
* @return com.gic.api.base.commons.ServiceResponse
* @throws
* @throws
*/
ServiceResponse
exist
(
String
enterpriseId
,
Integer
storeWidgetId
,
Integer
storeId
);
/**
* existByStoreInfoId 判断门店是否在门店控件里
* @Title: existByStoreInfoId
* @Description:
* @author zhiwj
* @Description:
* @author zhiwj
* @param enterpriseId
* @param storeWidgetId
* @param storeInfoId
* @return com.gic.api.base.commons.ServiceResponse
* @throws
* @throws
*/
ServiceResponse
existByStoreInfoId
(
Integer
enterpriseId
,
Integer
storeWidgetId
,
Integer
storeInfoId
);
/**
* getStoreColumnSet
* getStoreColumnSet
* @Title: getStoreColumnSet
* @Description:
* @author zhiwj
* @Description:
* @author zhiwj
* @param enterpriseId
* @param storeWidgetId
* @return com.gic.api.base.commons.ServiceResponse<com.gic.store.dto.StoreColumnSet>
* @throws
* @throws
*/
ServiceResponse
<
StoreColumnSet
>
getStoreColumnSet
(
Integer
enterpriseId
,
Integer
storeWidgetId
);
}
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