This commit is contained in:
Van0313
2025-04-27 15:58:05 +08:00
parent 040f99d285
commit 3cbd0a8025
2 changed files with 89 additions and 0 deletions

View File

@@ -255,6 +255,12 @@ public class WxMessageConsumer {
jdUtils.sendOrderToWxByOrderD(msg.replace("", ""), fromWxid);
return;
}
if (msg.startsWith("")){
logger.info("消息以评开头,处理评价指令消息");
jdUtils.sendOrderToWxByOrderP(msg.replace("", ""), fromWxid);
return;
}
logger.info("未命中前置指令,开始命中 Default 流程");
jdUtils.sendOrderToWxByOrderDefault(msg, fromWxid);
}