去掉代码排序
This commit is contained in:
@@ -136,10 +136,11 @@ public class LabelServiceImpl implements LabelService {
|
||||
labelVO.setLabelName(label.getLabelName());
|
||||
labelVO.setLabelCreateTime(label.getLabelCreateTime());
|
||||
return labelVO;
|
||||
}).collect(Collectors.toList());
|
||||
}).sorted(Comparator.comparing(LabelGroupVO.LabelVO::getLabelCreateTime))
|
||||
.collect(Collectors.toList());
|
||||
vo.setLabelList(labelList1);
|
||||
return vo;
|
||||
}).sorted(Comparator.comparing(LabelGroupVO::getGroupCreateTime)).collect(Collectors.toList());
|
||||
}).collect(Collectors.toList());
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user