20 lines
459 B
Java
20 lines
459 B
Java
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
|
|
) {
|
|
}
|