查询额外订单收入

This commit is contained in:
Guoqs
2025-01-24 14:33:07 +08:00
parent 26ee67c9b9
commit 74543bbdd9
3 changed files with 16 additions and 2 deletions

View File

@@ -770,4 +770,13 @@
</if>
and trade_date between #{startTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
</select>
<select id="queryOrderSplitRecordList" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from order_split_record
where del_flag = '0'
and adapay_member_id = #{adapayMemberId,jdbcType=VARCHAR}
and trade_date between #{startTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
</select>
</mapper>