This commit is contained in:
2024-12-31 22:11:52 +08:00
parent beaf9ac7d7
commit a8d369a8b2
2 changed files with 3 additions and 2 deletions

View File

@@ -9,6 +9,7 @@
LEFT JOIN sys_user b ON a.user_id = b.user_id
LEFT JOIN apps_equipment c ON a.order_id = c.order_id
LEFT JOIN shop_merchant d ON a.merchant_code = d.merchant_code
LEFT JOIN shop_order e ON a.order_id = e.order_id
<where>
<if test="param.orderRefundId != null">
AND a.order_refund_id = #{param.orderRefundId}
@@ -80,7 +81,7 @@
AND a.create_time &lt;= #{param.createTimeEnd}
</if>
<if test="param.orderNo != null">
AND a.order_no = #{param.orderNo}
AND e.order_no LIKE CONCAT('%', #{param.orderNo}, '%')
</if>
</where>
</sql>

View File

@@ -71,7 +71,7 @@ mybatis-plus:
configuration:
map-underscore-to-camel-case: true
cache-enabled: true
log-impl: ${LOG_IMPL:org.apache.ibatis.logging.nologging.NoLoggingImpl}
log-impl: ${LOG_IMPL:org.apache.ibatis.logging.stdout.StdOutImpl}
global-config:
:banner: false
db-config: