From 880183edcf14844996e5f515b0c83c69c7dcb2d4 Mon Sep 17 00:00:00 2001 From: huanghongfa <18228131219@163.com> Date: 星期一, 07 十二月 2020 11:27:12 +0800 Subject: [PATCH] 数据库所有主键修改为bigint --- springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/LoginApi.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/LoginApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/LoginApi.java index 7e6224b..9a6aff8 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/LoginApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/LoginApi.java @@ -75,7 +75,7 @@ return R.fail("微信用户参数不全"); } WxMaService maService = wxMaConfiguration.getMaService(); - Integer userId = this.getUserId(); + Long userId = this.getUserId(); boolean empty2 = ObjectUtils.isEmpty(userId); if (empty2) { throw new UnAuthenticationException(); @@ -105,7 +105,7 @@ return R.fail("微信用户参数不全"); } WxMaService maService = wxMaConfiguration.getMaService(); - Integer userId = this.getUserId(); + Long userId = this.getUserId(); boolean empty2 = ObjectUtils.isEmpty(userId); if (empty2) { throw new UnAuthenticationException(); -- Gitblit v1.7.1