zoujiajian 2 жил өмнө
parent
commit
bbb4e1ed84

+ 2 - 2
netflix-web/src/main/java/com/cyksj/web/controller/manage/corp/CorpCustomerAcquistionLinkController.java

@@ -96,7 +96,7 @@ public class CorpCustomerAcquistionLinkController {
             try {
                 List<String> userStrList = corpFollowServiceDtos.stream().filter(cf -> {
                     try {
-                        return Jsons.parseList(e.getUserList(), Integer.class).contains(cf.getId());
+                        return Jsons.parseList(e.getUserList(), Long.class).contains(cf.getId());
                     } catch (Exception ex) {
                     }
                     return false;
@@ -106,7 +106,7 @@ public class CorpCustomerAcquistionLinkController {
                 if (StrUtil.isNotEmpty(e.getChooseDutyUsers())) {
                     List<String> dutyUserList = corpFollowServiceDtos.stream().filter(cf -> {
                         try {
-                            return Jsons.parseList(e.getChooseDutyUsers(), Integer.class).contains(cf.getId());
+                            return Jsons.parseList(e.getChooseDutyUsers(), Long.class).contains(cf.getId());
                         } catch (Exception ex) {
                         }
                         return false;