|
@@ -108,6 +108,51 @@ open class TaskEntity: SBaseEntity() {
|
|
|
@JsonProperty(value = "DownloadFinishTime")
|
|
|
@JSONField(name = "DownloadFinishTime")
|
|
|
var downloadFinishTime: Date? = null
|
|
|
+
|
|
|
+ @JsonProperty(value = "FloorServerUrl")
|
|
|
+ @JSONField(name = "FloorServerUrl")
|
|
|
+ @Column(name = "floor_server_url")
|
|
|
+ var floorServerUrl:String? = null
|
|
|
+
|
|
|
+ @JsonProperty(value = "UseablePhaseName")
|
|
|
+ @JSONField(name = "UseablePhaseName")
|
|
|
+ @Column(name = "useable_phase_name")
|
|
|
+ var useablePhaseName:String? = null
|
|
|
+
|
|
|
+ @JsonProperty(value = "SagaSign")
|
|
|
+ @JSONField(name = "SagaSign")
|
|
|
+ @Column(name = "saga_sign")
|
|
|
+ var sagaSign:String? = null
|
|
|
+
|
|
|
+ @JsonProperty(value = "CheckItems")
|
|
|
+ @JSONField(name = "CheckItems")
|
|
|
+ @Column(name = "check_items")
|
|
|
+ var checkItems:String? = null
|
|
|
+
|
|
|
+ @JsonProperty(value = "FacilityParameters")
|
|
|
+ @JSONField(name = "FacilityParameters")
|
|
|
+ @Column(name = "facility_parameters")
|
|
|
+ var facilityParameters:String? = null
|
|
|
+
|
|
|
+ @JsonProperty(value = "SpaceParameters")
|
|
|
+ @JSONField(name = "SpaceParameters")
|
|
|
+ @Column(name = "space_parameters")
|
|
|
+ var spaceParameters:String? = null
|
|
|
+
|
|
|
+ @JsonProperty(value = "RoomParameters")
|
|
|
+ @JSONField(name = "RoomParameters")
|
|
|
+ @Column(name = "room_parameters")
|
|
|
+ var roomParameters:String? = null
|
|
|
+
|
|
|
+ @JsonProperty(value = "MEPCurveParameters")
|
|
|
+ @JSONField(name = "MEPCurveParameters")
|
|
|
+ @Column(name = "mepcurve_parameters")
|
|
|
+ var mEPCurveParameters:String? = null
|
|
|
+
|
|
|
+ @JsonProperty(value = "EquipComponentCode")
|
|
|
+ @JSONField(name = "EquipComponentCode")
|
|
|
+ @Column(name = "equip_code")
|
|
|
+ var equipComponentCode:String? = null
|
|
|
} // Class AppendixType
|
|
|
|
|
|
|