获取车锁列表
功能表 : supportBikeLockManager
示例
Swift
Cmds.getBikeLockList().send { rs in
if case .success(let obj) = rs {
// 成功
// obj is IDOBikeLockReplyModel
}else {
// 失败
}
}
Kotlin
Cmds.getBikeLockList().send {
if (it.error.code == 0) {
// 成功
// it.res is IDOBikeLockReplyModel
}else {
// 失败
}
}