Commit 8f2c44a9 by 徐康

增加userid

parent 76402e33
......@@ -57,4 +57,6 @@ public class McCafeQueryOrderVo {
*/
private String channelType;
private String userId;
}
......@@ -2561,6 +2561,9 @@ public class MCCafeOrderServiceImpl implements MCCafeOrderService {
orderConditionsReq.setPageNum(i);
orderConditionsReq.setPageSize(500);
orderConditionsReq.setSortRule(1);
if(StringUtils.isNotBlank(queryOrderVo.getUserId())) {
orderConditionsReq.setUserId(queryOrderVo.getUserId());
}
BaseDownLoadResponse<List<OrderInfoReqs>> response = orderDownLoadSdkService.queryOrderByConditions(orderConditionsReq, LogThreadLocal.getTrackingNo());
AppLogUtil.infoLog("queryOrderByConditions:"+ JSON.toJSONString(response),null,null);
if(CollectionUtils.isEmpty(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