报表导出

This commit is contained in:
2026-05-25 22:33:27 +08:00
parent 62722a9ce7
commit c0fed06eaa
9 changed files with 825 additions and 9 deletions

View File

@@ -7,7 +7,8 @@
INSERT INTO lb_order_row (
id, old_id, tenant_id, data_type,
seller_id, seller_name, seller_phone,
buyer_id, order_sn, total_money,
buyer_id, buyer_name, buyer_phone,
order_sn, total_money,
pay_time, pay_img, status, is_resell, is_show,
consignee, phone, province, city, area, address,
merchandise_id, confirm_time, buy_time, created_at, updated_at,
@@ -17,7 +18,8 @@
(
#{item.id}, #{item.oldId}, #{item.tenantId}, #{item.dataType},
#{item.sellerId}, #{item.sellerName}, #{item.sellerPhone},
#{item.buyerId}, #{item.orderSn}, #{item.totalMoney},
#{item.buyerId}, #{item.buyerName}, #{item.buyerPhone},
#{item.orderSn}, #{item.totalMoney},
#{item.payTime}, #{item.payImg}, #{item.status}, #{item.isResell}, #{item.isShow},
#{item.consignee}, #{item.phone}, #{item.province}, #{item.city}, #{item.area}, #{item.address},
#{item.merchandiseId}, #{item.confirmTime}, #{item.buyTime}, #{item.createdAt}, #{item.updatedAt},
@@ -32,6 +34,8 @@
seller_name = VALUES(seller_name),
seller_phone = VALUES(seller_phone),
buyer_id = VALUES(buyer_id),
buyer_name = VALUES(buyer_name),
buyer_phone = VALUES(buyer_phone),
order_sn = VALUES(order_sn),
total_money = VALUES(total_money),
pay_time = VALUES(pay_time),