|
|
@@ -70,9 +70,9 @@ class QuestionPdfController extends Controller
|
|
|
]);
|
|
|
|
|
|
try {
|
|
|
- // 1. Fetch questions from database
|
|
|
+ // 1. Fetch questions from database (使用 questions_temp 临时表)
|
|
|
$questions = DB::connection('remote_mysql')
|
|
|
- ->table('questions')
|
|
|
+ ->table('questions_temp')
|
|
|
->whereIn('id', $questionIds)
|
|
|
->get();
|
|
|
|