Commit bd4d39c0 by 王祖波

初始化建联时间数组

parent 1e6147ee
...@@ -408,6 +408,9 @@ public class ContactLogServiceImpl implements ContactLogService { ...@@ -408,6 +408,9 @@ public class ContactLogServiceImpl implements ContactLogService {
return; return;
} }
List<Long> clerkContactTimeList = memberJO.getObject("clerkChannelContactTime",new TypeReference<List<Long>>(){}); List<Long> clerkContactTimeList = memberJO.getObject("clerkChannelContactTime",new TypeReference<List<Long>>(){});
if (clerkContactTimeList == null) {
clerkContactTimeList = new ArrayList<>();
}
if (bizType == null) { if (bizType == null) {
clerkContactTimeList = Arrays.stream(ContactBizTypeEnum.values()) clerkContactTimeList = Arrays.stream(ContactBizTypeEnum.values())
.map(bizTypeEnum -> bizTypeEnum.getEsClerkContactTime(contactTime)) .map(bizTypeEnum -> bizTypeEnum.getEsClerkContactTime(contactTime))
......
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