| | |
| | | userInfo = userService.userInfo(tenantId, username, DigestUtil.hex(password), UserEnum.WEB); |
| | | } else if (userType.equals(UserEnum.APP.getName())) { |
| | | userInfo = userService.userInfo(tenantId, username, DigestUtil.hex(password), UserEnum.APP); |
| | | }else if (userType.equals(UserEnum.WX.getName())){ |
| | | // 微信小程序登录 |
| | | userInfo = userService.wxUserInfo(tenantId,username, DigestUtil.hex(password), UserEnum.WEB); |
| | | } else { |
| | | userInfo = userService.userInfo(tenantId, username, DigestUtil.hex(password), UserEnum.OTHER); |
| | | } |