Commit e0eb3a66 by 徐高华

log

parent ec2e0465
......@@ -83,7 +83,7 @@ public class HmStoreController {
String storeSearchParams = request.getParameter("storeSearchParams");
// 导购参数
String clerkSearchParams = request.getParameter("clerkSearchParams");
Map<String, Object> params = new HashMap<String, Object>();
Map<String, Object> params = new HashMap<>();
params.put("enterpriseId", enterpriseId);
// 2线上
params.put("status", 2);
......@@ -124,7 +124,7 @@ public class HmStoreController {
page.setPageSize(basePageInfo.getPageSize());
page.setCurrentPage(basePageInfo.getPageNum());
page.setParams(params);
logger.info("params:{}", JSON.toJSONString(params));
logger.info("查询条件:{}", JSON.toJSONString(params));
page = this.clerkService.listStoreClerkByPage(page);
Page<ClerkStoreListVO> retPage = new Page<>();
retPage.setPageSize(basePageInfo.getPageSize());
......
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