标注接口

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
@@ -0,0 +1,19 @@
package com.cadlabel.dto.cad.annotation;
import java.time.LocalDateTime;
import java.util.List;
public record CadStructureResponse(
Long id,
Long modelId,
String structureName,
String structureType,
String purpose,
String solution,
String reason,
String remark,
List<CadStructureHistoryItemResponse> historyItems,
LocalDateTime createdAt,
LocalDateTime updatedAt
) {
}