|
@@ -31,12 +31,15 @@ import io.swagger.v3.oas.annotations.media.Schema
|
|
|
import java.io.Serializable
|
|
|
import javax.persistence.Column
|
|
|
import javax.persistence.Id
|
|
|
+import javax.persistence.Table
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
* @author wx <zhangweixin@sagacloud.com>
|
|
|
* @date 2020/12/11 12:03
|
|
|
*/
|
|
|
+@Schema(description = "空间父类实体类")
|
|
|
+@Table(name = "zone_space_base")
|
|
|
open class SpaceBaseZone : Serializable, BaseInfo() {
|
|
|
|
|
|
/** 空间ID */
|
|
@@ -75,11 +78,6 @@ open class SpaceBaseZone : Serializable, BaseInfo() {
|
|
|
@Column(name = "floor_id")
|
|
|
var floorId: String? = null
|
|
|
|
|
|
- /** BIM模型中编码 */
|
|
|
- @Schema(description = "BIM模型中编码")
|
|
|
- @Column(name = "bim_id")
|
|
|
- var bimId: String? = null
|
|
|
-
|
|
|
/** 类型 */
|
|
|
@Schema(description = "类型")
|
|
|
@Column(name = "object_type")
|