feat: 开始组装 opt

This commit is contained in:
2025-12-16 15:58:37 +08:00
parent 644c937476
commit 2664cc7c69
7 changed files with 104 additions and 53 deletions

View File

@@ -1,5 +1,7 @@
package com.lukouguoji.module_base.bean
import androidx.databinding.ObservableBoolean
/**
* 运单列表Bean右侧运单列表
*/
@@ -15,4 +17,7 @@ class AssembleWaybillBean {
val fLightInfo: String
get() = "$fno/${fdate.replace("-", "")}"
// ========== UI扩展字段 ==========
val isSelected: ObservableBoolean = ObservableBoolean(false) // 选中状态
}