yeshijie 4 年 前
コミット
9f8bc6136e

+ 2 - 1
server/svr-authentication/src/main/java/com/yihu/jw/security/core/userdetails/jdbc/WlyyUserDetailsService.java

@ -62,7 +62,7 @@ public class WlyyUserDetailsService extends JdbcDaoSupport implements UserDetail
    private static final String PATIENT_INSERT_WEHCAT = "insert into base_patient_wechat (id,wechat_id,patient_id,openid,create_time) values(?,?,?,?,?)";
    private static final String UPDATE_PATIENT_CARD_TYPE = "update base_patient set card_type = ? where id = ?";
    private static final String UPDATE_PATIENT_CARD_TYPE = "update base_patient set card_type = ?,alipay_id = ? where id = ?";
    private static final String BespeakRegist = "bespeakRegist:";
@ -483,6 +483,7 @@ public class WlyyUserDetailsService extends JdbcDaoSupport implements UserDetail
                this.getJdbcTemplate().update(UPDATE_PATIENT_CARD_TYPE,
                        new Object[]{
                                data[2],
                                data[4],
                                users.get(0).getId()
                        }
                );