综合查询-设备订单详情

This commit is contained in:
liang.chao 2024-12-18 16:52:12 +08:00
parent c8dd8523ba
commit e5f3e437f9
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="getRentDetails" resultType="com.bonus.material.comprehensive.entity.RentDetailDto">
SELECT
moi.`code` as orderCode,
CONCAT( md.rent_begin_time, '至', md.rent_end_time ) as rentTime,
CONCAT(DATE_FORMAT(md.rent_begin_time, '%Y-%m-%d'),' 至 ',DATE_FORMAT(md.rent_end_time, '%Y-%m-%d')) AS rentTime
md.order_status as orderStatus,
md.costs as rentCost,
COALESCE ( lrr.repair_change_price, lrr.repair_price, 0 ) AS repairCost,