|
@@ -29,6 +29,7 @@ package com.persagy.server.datacenter.models.entities.graphtype.rel
|
|
|
import com.alibaba.fastjson.annotation.JSONField
|
|
|
import com.persagy.service.models.annotations.SCascade
|
|
|
import io.swagger.v3.oas.annotations.media.Schema
|
|
|
+import javax.persistence.Column
|
|
|
import javax.persistence.Table
|
|
|
|
|
|
/**
|
|
@@ -46,4 +47,9 @@ open class RelZoneSpaceConnectedSp: SpaceBaseZone() {
|
|
|
@JSONField(name = "objectInfo")
|
|
|
var objectInfo: ArrayList<RelZoneSpace>? = null
|
|
|
|
|
|
+ /** 对象类型 */
|
|
|
+ @Schema(description = "对象类型")
|
|
|
+ @Column(name = "object_type")
|
|
|
+ var classCode: String? = null
|
|
|
+
|
|
|
}
|