Commit c0dd8b80 by 王宇航

1.5.8

1、訂單新增takeFoodCode取餐碼
2、訂單新增restaurantTableType餐桌類型0:堂食、1:外賣
parent 46aa9907
...@@ -55,7 +55,7 @@ afterEvaluate { ...@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect" groupId = "com.gingersoft.connect"
artifactId = "Connect" artifactId = "Connect"
version = "1.5.7" version = "1.5.8"
// 添加 POM 配置 // 添加 POM 配置
// pom { // pom {
// name.set("GingerSoftConnect") // name.set("GingerSoftConnect")
......
...@@ -12,6 +12,10 @@ public class OrderInfoBean implements SendMsgType { ...@@ -12,6 +12,10 @@ public class OrderInfoBean implements SendMsgType {
*/ */
private String orderNo; private String orderNo;
/** /**
* 取餐碼
*/
private String takeFoodCode;
/**
* 餐檯名稱 * 餐檯名稱
*/ */
private String tableName; private String tableName;
...@@ -20,6 +24,12 @@ public class OrderInfoBean implements SendMsgType { ...@@ -20,6 +24,12 @@ public class OrderInfoBean implements SendMsgType {
*/ */
private int orderType; private int orderType;
/** /**
* 餐桌類型
* 0:堂食
* 1:外賣
*/
private int restaurantTableType;
/**
* 用餐人數 * 用餐人數
*/ */
private int pax; private int pax;
...@@ -85,6 +95,14 @@ public class OrderInfoBean implements SendMsgType { ...@@ -85,6 +95,14 @@ public class OrderInfoBean implements SendMsgType {
this.orderNo = orderNo; this.orderNo = orderNo;
} }
public String getTakeFoodCode() {
return takeFoodCode;
}
public void setTakeFoodCode(String takeFoodCode) {
this.takeFoodCode = takeFoodCode;
}
public String getTableName() { public String getTableName() {
return tableName; return tableName;
} }
...@@ -101,6 +119,14 @@ public class OrderInfoBean implements SendMsgType { ...@@ -101,6 +119,14 @@ public class OrderInfoBean implements SendMsgType {
this.orderType = orderType; this.orderType = orderType;
} }
public int getRestaurantTableType() {
return restaurantTableType;
}
public void setRestaurantTableType(int restaurantTableType) {
this.restaurantTableType = restaurantTableType;
}
public int getPax() { public int getPax() {
return this.pax; return this.pax;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment