cad_model_history新增字段topology_path

This commit is contained in:
lxp
2026-07-09 10:40:03 +08:00
parent 43545aa715
commit c0a5fb8e26
7 changed files with 16 additions and 3 deletions
@@ -11,6 +11,7 @@ public record CadModelHistoryResponse(
String operationType,
String stepPath,
String glbPath,
String topologyPath,
String convertStatus,
String errorMessage,
LocalDateTime createdAt,
@@ -35,6 +35,9 @@ public class CadModelHistory {
/** GLB 文件路径。 */
private String glbPath;
/** 拓扑文件路径。 */
private String topologyPath;
/** 转换状态。 */
private String convertStatus;
@@ -325,6 +325,7 @@ public class CadModelServiceImpl implements CadModelService {
history.getOperationType(),
history.getStepPath(),
history.getGlbPath(),
history.getTopologyPath(),
history.getConvertStatus(),
history.getErrorMessage(),
history.getCreatedAt(),