表情处理

This commit is contained in:
2025-12-05 16:46:04 +08:00
parent 5d564a4eea
commit bdd6cdcb9a

View File

@@ -28,6 +28,7 @@ class ChatGroup extends BaseModel
$shop = Db::name('tb_shop_info')->where(['id' => $shop_id])->find(); $shop = Db::name('tb_shop_info')->where(['id' => $shop_id])->find();
if(empty($shop)) { if(empty($shop)) {
Log::info('店铺不存在'); Log::info('店铺不存在');
return false;
} }
// 查找群数量 // 查找群数量
$count = Db::name('chat_group')->where(['shop_id' => $shop_id])->count(); $count = Db::name('chat_group')->where(['shop_id' => $shop_id])->count();