Commit 0815fd61 by tc

bug:[none]数量问题

parent 71d17f92
...@@ -2527,7 +2527,7 @@ public class BookAdviserBizImpl implements BookAdviserBiz { ...@@ -2527,7 +2527,7 @@ public class BookAdviserBizImpl implements BookAdviserBiz {
return result; return result;
}else{ }else{
for(int i=index*500;i<(index+1)*500;i++){ for(int i=index*500;i<(index+1)*500;i++){
if(source.size()>=i) { if(source.size()>i) {
result.add(source.get(i)); result.add(source.get(i));
}else { }else {
break; break;
......
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