caiaf 3 years ago
parent
commit
bf719f6116

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

@@ -31,11 +31,12 @@ open class Project {
     /** 项目配置 */
     @ApiModelProperty(value = "项目配置")
     @Column(name = "config_json")
-    var configJson: String? = null
+    var configJson: TaskEntity? = null
 
     /** 标准类型 */
     @ApiModelProperty(value = "标准类型")
     @Column(name = "type")
     var type: String? = null
 
+
 }