Explorar el Código

test

tags/v1.1.2
huangjiajun hace 1 año
padre
commit
c90f22da36
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      db/db_user.go

+ 1
- 1
db/db_user.go Ver fichero

@@ -8,7 +8,7 @@ import (
// UserFindByMobile search user by mobile
func UserFindByMobile(Db *xorm.Engine, mobile string) (*model.User, error) {
var m model.User
if has, err := Db.Where("phone = ? AND delete_at = 0", mobile, mobile).
if has, err := Db.Where("phone = ? AND delete_at = 0", mobile).
Get(&m); err != nil || has == false {
return nil, err
}


Cargando…
Cancelar
Guardar