Commit 2e285f2f by 陶光胜

门店日志接口

parent 7a634833
......@@ -131,6 +131,9 @@ public class StoreController {
@RequestMapping("list-store-log")
public RestResponse listStoreLog(Integer storeId, PageQO pageQO){
Page page = new Page(pageQO.getCurrentPage(), pageQO.getPageSize());
Map<String, Object> params = new HashMap<>();
params.put("relationId", storeId);
page.setParams(params);
ServiceResponse<Page<GicLogInterfaceDTO>> response = this.logApiService.listLogInterface(page);
if(response.isSuccess()){
return RestResponse.success(response.getResult());
......
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