Browse Source

项目配置

caiaf 3 years ago
parent
commit
218c553222

+ 5 - 0
revit-algorithm/src/main/kotlin/cn/sagacloud/server/algorithm/models/entities/Project.kt

@@ -33,4 +33,9 @@ open class Project {
     @Column(name = "config_json")
     var configJson: String? = null
 
+    /** 标准类型 */
+    @ApiModelProperty(value = "标准类型")
+    @Column(name = "type")
+    var type: String? = null
+
 }