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