mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-03 17:40:13 +08:00
新增 后管查询运营商订单报表V2 接口
This commit is contained in:
@@ -268,4 +268,24 @@
|
||||
#{item,jdbcType=INTEGER}
|
||||
</foreach>
|
||||
</update>
|
||||
|
||||
<select id="getMerchantClearingBillList" resultType="com.jsowell.pile.vo.web.MerchantClearingBillVO" parameterType="com.jsowell.pile.dto.GetClearingBillDTO">
|
||||
select
|
||||
t1.trade_date as tradeDate,
|
||||
t1.bill_status as billStatus,
|
||||
t1.clearing_bill_code as clearingBillCode,
|
||||
t1.clearing_time as clearingTime,
|
||||
t1.merchant_id as merchantId,
|
||||
t2.merchant_name as merchantName,
|
||||
t1.receivable_amount as receivableAmount,
|
||||
t1.should_clearing_amount as shouldClearingAmount,
|
||||
t1.actual_clearing_amount as actualClearingAmount,
|
||||
t1.fee_amount as feeAmount,
|
||||
t1.withdrawable_amount as withdrawAbleAmount,
|
||||
t1.withdraw_code as withdrawCode
|
||||
from clearing_bill_info t1
|
||||
join pile_merchant_info t2 on t1.merchant_id = t2.id and t1.del_flag = '0'
|
||||
where t1.merchant_id = #{merchantId,jdbcType=VARCHAR}
|
||||
and t1.create_time between #{startTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user