소스 검색

模型项目配置表增加集团编码字段

linhuili 3 년 전
부모
커밋
26cc32cc55
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      revit-algorithm/src/main/kotlin/cn/sagacloud/server/algorithm/models/entities/Project.kt

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

@@ -33,6 +33,11 @@ open class Project {
     @Column(name = "config_json")
     var configJson: TaskEntity? = null
 
+    /** 集团编码 */
+    @ApiModelProperty(value = "集团编码")
+    @Column(name = "group_code")
+    var groupCode: String? = null
+
     /** 标准类型 */
     @ApiModelProperty(value = "标准类型")
     @Column(name = "type")