This commit is contained in:
2023-06-08 15:00:30 +08:00
parent f89152fe86
commit bdc71e8690
7 changed files with 70 additions and 1 deletions

View File

@@ -221,4 +221,12 @@
del_flag = #{delFlag,jdbcType=VARCHAR}
where id = #{id,jdbcType=INTEGER}
</update>
<select id="selectByMerchantId" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from adapay_member_info
where del_flag = '0'
and merchant_id = #{merchantId,jdbcType=VARCHAR}
</select>
</mapper>