25 lines
601 B
Java
25 lines
601 B
Java
package com.cadlabel.dto.cad;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
public record CadModelResponse(
|
|
Long id,
|
|
Long categoryId,
|
|
String modelName,
|
|
String sourceSwFilename,
|
|
String sourceSwPath,
|
|
String featureTreeJsonPath,
|
|
String viewPath,
|
|
String applicationScenario,
|
|
String material,
|
|
String manufacturingMethod,
|
|
String unit,
|
|
String userRequirement,
|
|
String designDescription,
|
|
String convertStatus,
|
|
String errorMessage,
|
|
LocalDateTime createdAt,
|
|
LocalDateTime updatedAt
|
|
) {
|
|
}
|