Commit fde1f719 authored by chenyuxi's avatar chenyuxi

feat: 瓜子交互任务

parent 5f4ec908
...@@ -85,6 +85,8 @@ public class TGzPushHandleServiceImpl implements TGzPushHandleService { ...@@ -85,6 +85,8 @@ public class TGzPushHandleServiceImpl implements TGzPushHandleService {
public void handlePushEntry(TGzPushEntry tGzPushEntry) { public void handlePushEntry(TGzPushEntry tGzPushEntry) {
// 先改为推送中 // 先改为推送中
tGzPushEntry.setFailReason("");
tGzPushEntry.setPushTime(LocalDateTime.now());
tGzPushEntry.setPushStatus(CommonConstants.THREE_STRING); tGzPushEntry.setPushStatus(CommonConstants.THREE_STRING);
tGzPushEntry.setUpdateTime(LocalDateTime.now()); tGzPushEntry.setUpdateTime(LocalDateTime.now());
tGzPushEntryService.updateById(tGzPushEntry); tGzPushEntryService.updateById(tGzPushEntry);
...@@ -135,6 +137,8 @@ public class TGzPushHandleServiceImpl implements TGzPushHandleService { ...@@ -135,6 +137,8 @@ public class TGzPushHandleServiceImpl implements TGzPushHandleService {
} }
// 先改为推送中 // 先改为推送中
findWaitInfo.setFailReason("");
findWaitInfo.setPushTime(LocalDateTime.now());
findWaitInfo.setPushStatus(CommonConstants.THREE_STRING); findWaitInfo.setPushStatus(CommonConstants.THREE_STRING);
findWaitInfo.setUpdateTime(LocalDateTime.now()); findWaitInfo.setUpdateTime(LocalDateTime.now());
tGzPushEntryService.updateById(findWaitInfo); tGzPushEntryService.updateById(findWaitInfo);
......
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