Commit c0dd8b80 by 王宇航

1.5.8

1、訂單新增takeFoodCode取餐碼
2、訂單新增restaurantTableType餐桌類型0:堂食、1:外賣
parent 46aa9907
......@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect"
artifactId = "Connect"
version = "1.5.7"
version = "1.5.8"
// 添加 POM 配置
// pom {
// name.set("GingerSoftConnect")
......
......@@ -12,6 +12,10 @@ public class OrderInfoBean implements SendMsgType {
*/
private String orderNo;
/**
* 取餐碼
*/
private String takeFoodCode;
/**
* 餐檯名稱
*/
private String tableName;
......@@ -20,6 +24,12 @@ public class OrderInfoBean implements SendMsgType {
*/
private int orderType;
/**
* 餐桌類型
* 0:堂食
* 1:外賣
*/
private int restaurantTableType;
/**
* 用餐人數
*/
private int pax;
......@@ -85,6 +95,14 @@ public class OrderInfoBean implements SendMsgType {
this.orderNo = orderNo;
}
public String getTakeFoodCode() {
return takeFoodCode;
}
public void setTakeFoodCode(String takeFoodCode) {
this.takeFoodCode = takeFoodCode;
}
public String getTableName() {
return tableName;
}
......@@ -101,6 +119,14 @@ public class OrderInfoBean implements SendMsgType {
this.orderType = orderType;
}
public int getRestaurantTableType() {
return restaurantTableType;
}
public void setRestaurantTableType(int restaurantTableType) {
this.restaurantTableType = restaurantTableType;
}
public int getPax() {
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