|
@@ -30,16 +30,13 @@ class CreateTicketPresenter : BasePresenter<ICreateTicketView>() {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- NetApi.getUserList(0, 10) {
|
|
|
|
|
- mvpView?.updateLockerList(it?.rows?.map { it.nickName })
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
NetApi.getDeptList(0, 10) {
|
|
NetApi.getDeptList(0, 10) {
|
|
|
println("getDeptList : $it")
|
|
println("getDeptList : $it")
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
NetApi.getRoleList(0, 10, USER_ROLE_LOCKER) {
|
|
NetApi.getRoleList(0, 10, USER_ROLE_LOCKER) {
|
|
|
println("Locker getRoleList : $it")
|
|
println("Locker getRoleList : $it")
|
|
|
|
|
+ mvpView?.updateLockerList(it?.rows?.map { it.nickName!! })
|
|
|
}
|
|
}
|
|
|
NetApi.getRoleList(0, 10, USER_ROLE_COLOCKER) {
|
|
NetApi.getRoleList(0, 10, USER_ROLE_COLOCKER) {
|
|
|
println("Colocker getRoleList : $it")
|
|
println("Colocker getRoleList : $it")
|