根据订单号查询订单分账记录

This commit is contained in:
Guoqs
2025-01-15 16:29:06 +08:00
parent 615b2b7b2e
commit c9a17aa46e
5 changed files with 134 additions and 9 deletions

View File

@@ -663,4 +663,11 @@
</trim>
</insert>
<select id="selectByOrderCode" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from order_split_record
where del_flag = '0'
and order_code = #{orderCode,jdbcType=VARCHAR}
</select>
</mapper>