|
@@ -79,9 +79,9 @@
|
|
|
where user_id = #{userId}::uuid
|
|
where user_id = #{userId}::uuid
|
|
|
</select>
|
|
</select>
|
|
|
|
|
|
|
|
- <insert id="insert">
|
|
|
|
|
- insert into dkic_a.t_wx_user (user_id,user_wxid, user_name, user_phone, user_pwd,joined_cps)
|
|
|
|
|
- values (#{userId } ::uuid,#{userWxid}, #{userName}, #{userPhone}, md5('123'), #{joinedCps,typeHandler=IntListTypeHandler})
|
|
|
|
|
|
|
+ <insert id="insert" useGeneratedKeys="true" keyProperty="userId" keyColumn="user_id" parameterType="com.dk.oauth.entity.UserWxLogin">
|
|
|
|
|
+ insert into dkic_a.t_wx_user (user_wxid, user_name, user_phone, user_pwd,joined_cps)
|
|
|
|
|
+ values (#{userWxid}, #{userName}, #{userPhone}, md5('123'), #{joinedCps,typeHandler=IntListTypeHandler})
|
|
|
</insert>
|
|
</insert>
|
|
|
|
|
|
|
|
<update id="cleanPhone">
|
|
<update id="cleanPhone">
|
|
@@ -152,7 +152,7 @@
|
|
|
AND app_code = #{appCode}
|
|
AND app_code = #{appCode}
|
|
|
</select>
|
|
</select>
|
|
|
|
|
|
|
|
- <!-- 修改密码 -->
|
|
|
|
|
|
|
+ <!-- 修改密码
|
|
|
<update id="updatePassword">
|
|
<update id="updatePassword">
|
|
|
update dkic_a.t_wx_user
|
|
update dkic_a.t_wx_user
|
|
|
<set>
|
|
<set>
|
|
@@ -160,5 +160,5 @@
|
|
|
</set>
|
|
</set>
|
|
|
where user_id = #{userId}
|
|
where user_id = #{userId}
|
|
|
</update>
|
|
</update>
|
|
|
-
|
|
|
|
|
|
|
+-->
|
|
|
</mapper>
|
|
</mapper>
|