模型列表和建模历史接口
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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
|
||||
) {
|
||||
}
|
||||
Reference in New Issue
Block a user