[fea]
[班车核销]
This commit is contained in:
yangyakun
2024-12-17 15:16:56 +08:00
parent 374e9d2730
commit 60c13cab0c
21 changed files with 140 additions and 86 deletions

View File

@@ -371,6 +371,21 @@ enum class Product(val code: Int) {
}
return NONE
}
fun valueOf4Wx(name: String?): Product {
when (name) {
"shuttle" -> {
return SHUTTLE
}
"bus" -> {
return BUS
}
"commute" -> {
return SCHEDULED
}
else -> {}
}
return NONE
}
}
}