1. 保持 boot 和 cloud 的统一

2. 暂时清理 mall 相关的单测,等后续全部适配完,再开启
This commit is contained in:
YunaiV
2023-10-23 23:53:06 +08:00
parent f826d117f8
commit 5b14810626
44 changed files with 19 additions and 5844 deletions

View File

@@ -39,7 +39,8 @@ public interface MemberUserApi {
* @return 会员用户 Map
*/
default Map<Long, MemberUserRespDTO> getUserMap(Collection<Long> ids) {
return convertMap(getUserList(ids).getCheckedData(), MemberUserRespDTO::getId);
List<MemberUserRespDTO> list = getUserList(ids).getCheckedData();
return convertMap(list, MemberUserRespDTO::getId);
}
@GetMapping(PREFIX + "/list-by-nickname")