模型列表和建模历史接口
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.cadlabel.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName("cad_model_history")
|
||||
public class CadModelHistory {
|
||||
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Long id;
|
||||
private Long modelId;
|
||||
private String sourceFeatureId;
|
||||
private Integer historyIndex;
|
||||
private String historyName;
|
||||
private String operationType;
|
||||
private String stepPath;
|
||||
private String glbPath;
|
||||
private String convertStatus;
|
||||
private String errorMessage;
|
||||
private LocalDateTime createdAt;
|
||||
private LocalDateTime updatedAt;
|
||||
}
|
||||
Reference in New Issue
Block a user