Commit 34e6ba22 by huangZW

1111

parent 6f9443f5
......@@ -138,7 +138,7 @@ public class StoreController extends WebBaseController{
resultList = resultList.stream().sorted(Comparator.comparing(StoreVO::getBindFlag).thenComparing(StoreVO::getClerkType).reversed().thenComparing(StoreVO::getCreateTime).reversed()).collect(Collectors.toList());
}else{
//店员
resultList = resultList.stream().sorted(Comparator.comparing(StoreVO::getBindFlag).thenComparing(StoreVO::getCreateTime)).collect(Collectors.toList());
resultList = resultList.stream().sorted(Comparator.comparing(StoreVO::getBindFlag).thenComparing(StoreVO::getCreateTime).reversed()).collect(Collectors.toList());
}
......
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