首节已办发送

This commit is contained in:
fang 2025-07-02 17:54:28 +08:00
parent 723270cf23
commit a8ff81d810
1 changed files with 7 additions and 2 deletions

View File

@ -65,10 +65,15 @@ public class BacklogServiceHandle extends AbstractServiceHandler {
}
logger.info("###结束待办_createToDo");
try {
String s = cache.get(ctx.getBusinessKey());
if (Objects.equals(s, "true")) {
//判断是否包含cache值
boolean contains = cache.contains(ctx.getBusinessKey());
if(contains){
return;
}
/*String s = cache.get(ctx.getBusinessKey());
if (Objects.equals(s, "true")) {
return;
}*/
// 发送首节的已办
sendToDo(ctx);
} catch (Exception e) {