查询站点订单日报详情

This commit is contained in:
2023-08-22 09:42:30 +08:00
parent 0bbde0245d
commit 36fe313a82
22 changed files with 321 additions and 21 deletions

View File

@@ -295,4 +295,12 @@
</if>
</trim>
</insert>
<select id="selectClearingBillCode" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from clearing_bill_detail
where del_flag = '0'
and order_code = #{orderCode,jdbcType=VARCHAR}
</select>
</mapper>