Commit b733e573 authored by chenyuxi's avatar chenyuxi

feat: 瓜子交互任务代码调整

parent 732b9e86
...@@ -114,6 +114,11 @@ public class TGzPushEntryServiceImpl extends ServiceImpl<TGzPushEntryMapper, TGz ...@@ -114,6 +114,11 @@ public class TGzPushEntryServiceImpl extends ServiceImpl<TGzPushEntryMapper, TGz
*/ */
@Override @Override
public void addPushEntry(TGzPushEntry tGzPushEntry) { public void addPushEntry(TGzPushEntry tGzPushEntry) {
// 流程是0的,不推送
if(CommonConstants.ZERO_STRING.equals(tGzPushEntry.getBizId())){
return;
}
// 仅存指定状态的任务 // 仅存指定状态的任务
if (!ArrayUtils.contains(taskTypeArr, tGzPushEntry.getTaskType())) { if (!ArrayUtils.contains(taskTypeArr, tGzPushEntry.getTaskType())) {
return; return;
......
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