修改接口

This commit is contained in:
huangdeliang
2021-07-15 15:47:08 +08:00
parent f71fe6f4cd
commit 10739f936c
3 changed files with 23 additions and 22 deletions

View File

@ -144,9 +144,9 @@
update sys_wx_user_info set cus_id = null where openid = #{openid}
</update>
<!-- 根据客户ID更新健康减脂宣言 -->
<!-- 根据openID更新健康减脂宣言 -->
<update id="updateHealthManifestoByCusId" parameterType="SysWxUserInfo">
update sys_wx_user_info set health_manifesto = #{healthManifesto} where cus_id = #{cusId}
update sys_wx_user_info set health_manifesto = #{healthManifesto} where openid = #{openid}
</update>
</mapper>