Commit 0d372474 by 徐高华

门店查询

parent a86ca40b
......@@ -1565,6 +1565,16 @@ public class WxStaffController extends WebBaseController {
@ResponseBody
@RequestMapping("/list-clerk-store")
public HaobanResponse listClerkStore(String enterpriseId,String clerkId,String searchParams) {
return resultResponse(HaoBanErrCode.ERR_1, null);
List<StoreListVO> storeList = new ArrayList<>();
StoreListVO s1 = new StoreListVO();
s1.setStoreId("1");
s1.setStoreName("门店1");
storeList.add(s1) ;
Page<StoreListVO> page = new Page<>();
page.setResult(storeList);
page.setTotalCount(10);
page.setPageSize(20);
return resultResponse(HaoBanErrCode.ERR_1, page);
}
}
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