https://blog.csdn.net/qq_43266465/article/details/102975593
<select id="getByOTID" resultType="com.ylb.domain.appleNoti.Latest_Receipt_Info" parameterType="String">
select * from weshow_refund where original_transaction_id= #{original_transaction_id} and product_id=#{product_id}
</select>
改为:
<select id="getByOTID" resultType="com.ylb.domain.appleNoti.Latest_Receipt_Info" parameterType="String">
select * from weshow_refund where original_transaction_id= #{arg0} and product_id=#{arg1}
</select>
网友评论