This commit is contained in:
aozhiwei 2024-07-07 12:04:58 +08:00
parent c24050890e
commit 3b5432fb57

View File

@ -407,4 +407,17 @@ class TempToolsController extends BaseController {
}
}
public function repairInGameMallMail()
{
$gameDbConn = myself()->_getMysql('');
$mailDbConn = myself()->_getMailMysql();
$rows = $gameDbConn->execQuery(
'SELECT * FROM t_ingame_mall',
array()
);
foreach ($rows as $row) {
echo json_encode($row);
}
}
}