Commit e7efbd68 by 程裕兵

feat:merchant

parent b0cd5595
......@@ -51,6 +51,7 @@ import com.jiejing.paycenter.common.model.vo.SubChannelAuthVO;
import com.jiejing.paycenter.common.model.vo.SubChannelVO;
import com.jiejing.studio.api.studio.vo.StudioVO;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
......@@ -555,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()));
}).collect(Collectors.toList());
}).sorted(Comparator.comparing(BrandMerchantVO::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