去掉代码排序

This commit is contained in:
苏竹红
2023-11-21 22:31:11 +08:00
parent 9a30e345ee
commit dfee1a2ace

View File

@@ -136,8 +136,7 @@ public class LabelServiceImpl implements LabelService {
labelVO.setLabelName(label.getLabelName());
labelVO.setLabelCreateTime(label.getLabelCreateTime());
return labelVO;
}).sorted(Comparator.comparing(LabelGroupVO.LabelVO::getLabelCreateTime))
.collect(Collectors.toList());
}).collect(Collectors.toList());
vo.setLabelList(labelList1);
return vo;
}).sorted(Comparator.comparing(LabelGroupVO::getGroupCreateTime)).collect(Collectors.toList());