Parcourir la source

Merge branch 'feature/Eid' of lvjian/wxbase into feature/Eid

吕健 il y a 2 ans
Parent
commit
a2e9891269
1 fichiers modifiés avec 5 ajouts et 2 suppressions
  1. 5 2
      src/main/resources/mybatis/EidTokenRecordMapper.xml

+ 5 - 2
src/main/resources/mybatis/EidTokenRecordMapper.xml

@@ -6,13 +6,16 @@
 
     <!-- 插入E证通 token 记录表 -->
     <insert id="insert">
-        INSERT INTO eid_token_record ( merch_sn, token, generation_time, expire_time )
+        INSERT INTO eid_token_record ( merch_sn, app_code, token, generation_time, expire_time, id_card, user_name )
         VALUES
             (
                 #{merchSn},
+                #{appCode},
                 #{token},
                 #{generationTime},
-                #{expireTime}
+                #{expireTime},
+                #{idCard},
+                #{userName}
             )
     </insert>