Commit 0d2f2e3b by 程裕兵

feat:merchant

parent e7efbd68
......@@ -556,7 +556,7 @@ public class MerchantConvert {
List<String> studioNames = studioMap.getOrDefault(brandId, new ArrayList<>()).stream()
.map(StudioVO::getName).collect(Collectors.toList());
return convertBrandMerchant(brandId, studioNames, e, dto, applyMap.get(e.getId()));
}).sorted(Comparator.comparing(BrandMerchantVO::getFinishTime)).collect(Collectors.toList());
}).sorted((o1, o2) -> o2.getFinishTime().compareTo(o1.getFinishTime())).collect(Collectors.toList());
}
public static StudioMerchantApply convertBindApply(Long studioId, StudioMerchantApply apply) {
......
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