Commit ebf27077 by 徐高华

非空判断

parent 9cedadd7
......@@ -577,6 +577,9 @@ public class GroupChatPlanServiceImpl implements GroupChatPlanService {
for (QywxSendMessageResultDTO item : list) {
TabGroupChatPlanLog entity = new TabGroupChatPlanLog();
sendTime = item.getSendTime();
if(null == sendTime) {
continue;
}
String wxChatId = item.getChatId();
// 如果企微的发送时间晚于计划的结束时间,不记录此类数据
if (sendTime.after(plan.getEndTime())) {
......
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