|
|
@@ -47,6 +47,7 @@
|
|
|
<result column="buyer_name" property="buyerName"/>
|
|
|
<result column="buyer_phone" property="buyerPhone"/>
|
|
|
<result column="buyer_address" property="buyerAddress"/>
|
|
|
+ <result column="order_status" property="orderStatus"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="listSelect">
|
|
|
@@ -90,7 +91,8 @@
|
|
|
auc.start_time as auction_start_time,
|
|
|
auc.end_time as auction_end_time,
|
|
|
auc.description as auction_desc,
|
|
|
- coalesce(l.deposit, auc.deposit) as margin_deposit
|
|
|
+ coalesce(l.deposit, auc.deposit) as margin_deposit,
|
|
|
+ lo.status as order_status
|
|
|
from lot_order_info lo
|
|
|
left join app_base_user abu on abu.id = lo.user_id
|
|
|
left join app_account aa on aa.account = abu.username and aa.status = 0
|