<select id="isSuccess" parameterType="java.lang.String" resultType="java.lang.String"> select platform_status = #{platformStatus,jdbcType=VARCHAR} from card_pay_info where user_id = #{userId,jdbcType=VARCHAR} </select> </mapper>
时间: 2024-04-28 13:22:06 浏览: 81
zoom-integration:Java代码使用zoom.us服务创建和管理会议
这是一个 MyBatis 的映射文件,其中定义了一个名为 "isSuccess" 的 SQL 查询语句。该语句接受两个参数,分别为 platformStatus 和 userId,类型分别为字符串。查询语句的功能是从 card_pay_info 表中查询指定用户的平台状态信息,并返回结果。具体查询条件为 platform_status 等于传入的 platformStatus 参数,且 user_id 等于传入的 userId 参数。返回结果类型为字符串。
阅读全文