查询订单分账配置

This commit is contained in:
Guoqs
2025-10-14 11:50:21 +08:00
parent 9e08d916f7
commit 65a26e1faf
11 changed files with 84 additions and 7 deletions

View File

@@ -929,4 +929,11 @@
set del_flag = '1'
where order_code = #{orderCode,jdbcType=VARCHAR}
</delete>
<select id="queryAllOrderSplitRecord" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from order_split_record
where order_code = #{orderCode,jdbcType=VARCHAR}
</select>
</mapper>