Explorar el Código

fix bug

release_toaliyun_real
xiaohanzi hace 5 años
padre
commit
25eaefabe1
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. +6
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxProfitSharingOrderServiceImpl.java

+ 6
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxProfitSharingOrderServiceImpl.java Ver fichero

@@ -523,7 +523,12 @@ public class WxProfitSharingOrderServiceImpl implements WxProfitSharingOrderServ
WxProfitSharingOrderQueryVo orderquery = (WxProfitSharingOrderQueryVo) queryParams;
orderquery.setBegin((page-1)*10000);
orderquery.setLimit(10000);
111111111111111111
List<WxProfitSharingOrderVo> list = wxProfitSharingOrderMapper.findOrderList(orderquery);
if (null != list && list.size() > 0 ) {
List<Object> retList = new ArrayList<Object>();
retList.addAll(list);
return retList;
}
return null;
}


Cargando…
Cancelar
Guardar