查询运营商提现记录

This commit is contained in:
2023-09-19 17:05:16 +08:00
parent 42ad306647
commit 09e83e8b24
4 changed files with 81 additions and 0 deletions

View File

@@ -468,4 +468,12 @@
#{orderCode,jdbcType=VARCHAR}
</foreach>
</select>
<select id="selectByMerchantId" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from clearing_withdraw_info
where del_flag = '0'
and merchant_id = #{merchantId,jdbcType=VARCHAR}
</select>
</mapper>