修改车信存储

This commit is contained in:
squallzhjch
2023-12-01 16:43:25 +08:00
parent b5afd6fd2b
commit 8dfd95dff4
26 changed files with 234 additions and 93 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -93,8 +93,11 @@ open class QsRecordBean @JvmOverloads constructor(
* 显示坐标
*/
var guideGeometry: String = "",
) : RealmObject() {
/**
* 备份数据
*/
var remarks: String = "",
) : RealmObject() {
fun copy(): QsRecordBean {
val qs = QsRecordBean(
@@ -115,6 +118,7 @@ open class QsRecordBean @JvmOverloads constructor(
t_lifecycle = t_lifecycle,
t_status = t_status,
attachmentBeanList = attachmentBeanList,
remarks = remarks,
)
qs.geometry = geometry
return qs