From 106ce29c536a097b4aa0b73676b54bb7be610954 Mon Sep 17 00:00:00 2001 From: liuxiaolong <liuxiaolong@aiotlink.com> Date: 星期二, 28 七月 2020 16:03:41 +0800 Subject: [PATCH] fix getVehicle --- service/userService.go | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/service/userService.go b/service/userService.go index e9ba427..5bd2303 100644 --- a/service/userService.go +++ b/service/userService.go @@ -30,7 +30,7 @@ hikPersonId := "" if hikPersons != nil { for _,hikP := range hikPersons { - if hikP.Phone == phoneNum { + if hikP.PhoneNo == phoneNum { found = true hikPersonId = hikP.PersonId } -- Gitblit v1.8.0