fix(face): 调整任务状态为正在生成时的锁定类型值

- 将任务状态为正在生成时的lockType从0修改为-9
- 确保正在生成状态能被正确识别和处理
This commit is contained in:
2025-11-27 17:14:50 +08:00
parent a7ef2cb35a
commit d483c222d0

View File

@@ -455,7 +455,7 @@ public class FaceServiceImpl implements FaceService {
} else if (taskById.getStatus() == 3) {
contentPageVO.setLockType(2);
} else {
contentPageVO.setLockType(0);
contentPageVO.setLockType(-9); // 正在生成
}
contentPageVO.setContentType(0);
}