diff --git a/src/main/java/com/gaotao/modules/shopOrder/entity/ProductMixInShopOrder.java b/src/main/java/com/gaotao/modules/shopOrder/entity/ProductMixInShopOrder.java
index a81549d..07a1fa8 100644
--- a/src/main/java/com/gaotao/modules/shopOrder/entity/ProductMixInShopOrder.java
+++ b/src/main/java/com/gaotao/modules/shopOrder/entity/ProductMixInShopOrder.java
@@ -29,6 +29,15 @@ public class ProductMixInShopOrder {
@TableField(exist = false)
private String qtyOnHand;
+ private String issueMethod;
+
+ public String getIssueMethod() {
+ return issueMethod;
+ }
+
+ public void setIssueMethod(String issueMethod) {
+ this.issueMethod = issueMethod;
+ }
public String getDefaultLocationID() {
return defaultLocationID;
diff --git a/src/main/resources/mapper/shopOrder/ShopOrderMapper.xml b/src/main/resources/mapper/shopOrder/ShopOrderMapper.xml
index f05e0ae..0f9e364 100644
--- a/src/main/resources/mapper/shopOrder/ShopOrderMapper.xml
+++ b/src/main/resources/mapper/shopOrder/ShopOrderMapper.xml
@@ -645,28 +645,27 @@