fix-导出司机编号

This commit is contained in:
xl
2024-07-18 16:48:55 +08:00
parent 117536ef8c
commit b9a1ae9d71

View File

@@ -894,7 +894,7 @@ public class ReturnCommissionPlatformInformationJoinUserServiceImpl extends Serv
JoinExportResponse resp = new JoinExportResponse();
BeanUtils.copyProperties(v, resp);
resp.setUserSn(Optional.ofNullable(uidMapList.get(v.getUid())).map(User::getUserSn).orElse(null));
resp.setPlatformName(Optional.ofNullable(platform).map(ReturnCommissionPlatformInformation::getName).orElse(""));
resp.setPlatformName(Optional.ofNullable(platform).map(ReturnCommissionPlatformInformation::getAbbreviation).orElse(""));
resp.setProvince(Optional.ofNullable(platform).map(ReturnCommissionPlatformInformation::getProvince).orElse(""));
resp.setCity(Optional.ofNullable(platform).map(ReturnCommissionPlatformInformation::getCity).orElse(""));
return resp;