接口分解和说明

对之前的接口cMemberBonusProcessor/cCetStoreInfos大接口进行了有效的拆解


之前返回的结果有:

dataMap.put("storeList", null);

dataMap.put("totalBlValue", 0);
dataMap.put("orderList", null);
dataMap.put("totalPayMoney", 0);
dataMap.put("memberList", null);


拆解为:
1.(提成接口)cMemberBonusProcessor/cCetStoreInfos 获取门店信息 只含有storeList和totalBlValue

2.(订单接口)cMemberBonusProcessor/cCetOrderInfos 获取订单信息 只含有 orderList 和totalPayMoney

3.(客户接口)cMemberBonusProcessor/cCetMemberInfos 获取客户信息 只含有 memberList    



说明:

1.其中1号接口的请求参数方式不变化,返回接口变为2个 

2.2号和3号接口的请求参数,offset=0&pageSize=10 是必传的,起始量和页面数(介意pageSiaze为10),查询无接口list为[].

3.2号和3号接口返回值totalCount 表示总数据量