Merge branch 'dev' into feature-integrated_with_JCPP

This commit is contained in:
Guoqs
2026-01-08 13:24:40 +08:00
5 changed files with 63 additions and 21 deletions

View File

@@ -150,4 +150,11 @@
from member_points_record
where id = #{id,jdbcType=BIGINT}
</delete>
<select id="countByOrderCodeAndType" resultType="int">
select count(1)
from member_points_record
where order_code = #{orderCode,jdbcType=VARCHAR}
and type = #{type,jdbcType=TINYINT}
</select>
</mapper>