Commit 550f50ff authored by 赵啸非's avatar 赵啸非

添加窗口编码

parent 0fe78918
...@@ -104,7 +104,7 @@ public class WindowOwnerServiceImpl extends AbstractCRUDServiceImpl<WindowOwnerD ...@@ -104,7 +104,7 @@ public class WindowOwnerServiceImpl extends AbstractCRUDServiceImpl<WindowOwnerD
ownerList.addAll(subTwoList); ownerList.addAll(subTwoList);
if (!ObjectUtils.isEmpty(pdu.getHallId())) { if (!ObjectUtils.isEmpty(pdu.getHallId())) {
ownerList = ownerList.stream().filter(f -> pdu.getHallId().equals(f.getHallId())).collect(Collectors.toList()); ownerList = ownerList.stream().sorted(Comparator.comparing(WindowPdu::getSelected)).filter(f -> pdu.getHallId().equals(f.getHallId())).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