fix bug
This commit is contained in:
@@ -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 <= #{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>
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user