fix(app): 修复拼图记录ID传递问题

- 将硬编码的0L替换为实际的recordId参数
- 确保拼图记录能够正确关联到puzzle_record表
- 移除打印特有标识注释,统一使用拼图记录ID逻辑
This commit is contained in:
2026-01-17 03:05:07 +08:00
parent 50aaf7cb1a
commit 1f7e6d69f4

View File

@@ -164,7 +164,7 @@ public class AppPuzzleController {
face.getScenicId(), face.getScenicId(),
record.getFaceId(), record.getFaceId(),
imageUrl, imageUrl,
0L // 打印特有 recordId // 拼图记录ID,用于关联 puzzle_record 表
); );
if (memberPrintId == null) { if (memberPrintId == null) {