酒吧房不允许嘉宾直接换麦

This commit is contained in:
2026-01-08 18:00:08 +08:00
parent 9c9af7ce1f
commit f7239cd9d4
2 changed files with 16 additions and 1 deletions

View File

@@ -79,4 +79,19 @@ class Xxiaoshi extends Controller
}
}
//拆分流水表
public function splitFlow()
{
$res = db::name('vs_user_money_log')
->field('user_id,room_id,change_type,money_type,change_value,from_id,remarks,createtime')->select();
$data = [];
$i = 0;
if($res){
foreach ($res as $v){
}
}
}
}