Commit 45480c87 by guojuxing

商户列表查询:license获取修改

parent d535cf77
......@@ -201,7 +201,7 @@ public class EnterpriseController {
if (CollectionUtils.isNotEmpty(licenseList)) {
Map<String, List<ApplicationLicenseDTO>> licenseMap = CollectionUtil.group(licenseList, "enterpriseId");
listResult.forEach(e -> {
List<ApplicationLicenseDTO> tempLicense = licenseMap.get(e.getEnterpriseId().toString());
List<ApplicationLicenseDTO> tempLicense = licenseMap.get(Long.valueOf(e.getEnterpriseId()));
if (CollectionUtils.isNotEmpty(tempLicense)) {
Set<String> licenseCodeSet = new HashSet<>(Arrays.asList("165165", "member_card", "wxapp", "wxfwh"));
Map<String, Integer> showLicenseMap = new HashMap<>(8);
......
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