List lambda 排序
Comparator<PromotionRule> comparator = Comparator.comparing(PromotionRule::getCreatedTime);
promotionRuleList.sort(comparator.reversed());
Comparator<PromotionRule> comparator = Comparator.comparing(PromotionRule::getCreatedTime);
promotionRuleList.sort(comparator.reversed());
