标注接口

This commit is contained in:
lxp
2026-07-08 16:01:51 +08:00
parent 3f30d574d6
commit bc18930b7a
28 changed files with 2040 additions and 1 deletions
@@ -10,17 +10,40 @@ import lombok.Data;
@TableName("cad_model_history")
public class CadModelHistory {
/** 建模历史ID。 */
@TableId(type = IdType.AUTO)
private Long id;
/** 关联 cad_model.id。 */
private Long modelId;
/** 源特征ID。 */
private String sourceFeatureId;
/** 建模历史步骤序号。 */
private Integer historyIndex;
/** 建模历史步骤名称。 */
private String historyName;
/** 操作类型。 */
private String operationType;
/** STEP 文件路径。 */
private String stepPath;
/** GLB 文件路径。 */
private String glbPath;
/** 转换状态。 */
private String convertStatus;
/** 转换或处理错误信息。 */
private String errorMessage;
/** 创建时间。 */
private LocalDateTime createdAt;
/** 更新时间。 */
private LocalDateTime updatedAt;
}