xie.kaifeng 8 ヶ月 前
コミット
dd556687f7

+ 2 - 0
mtp3-century/src/main/resources/mapper/TradeOrderdetailMapper.xml

@@ -2056,6 +2056,7 @@
         t.buyorsell "buyorsell",
         g.goodunitid "goodunitid",
         t.marketid "marketid",
+        mar.trademode "trademode",
         t.userid "userid",
         t.accountid "accountid",
         t.goodsid "goodsid",
@@ -2068,6 +2069,7 @@
         t.realdeliveryqty * t.deliverypremium "realdeliverytotalpremium"
         from Trade_GoodsDeliveryOffLine t
         left join useraccount ua on t.userid = ua.userid
+        left join market mar on mar.marketid = t.marketid
         left join useraccount ua2 on t.matchuserid = ua2.userid
         left join goods g on t.goodsid = g.goodsid
         left join enumdicitem e1 on e1.enumdiccode = 'buyOrSell' and t.buyorsell = e1.enumitemname

+ 2 - 0
mtp3-pojos/src/main/java/com/muchinfo/mtp3pojos/vo/query/deliveryorder/OfflineDeliveryResult.java

@@ -78,5 +78,7 @@ public class OfflineDeliveryResult {
     private Long marketid;
 
     private Long buyorsell;
+
+    private Integer trademode;
 }