Commit 5c2f9362 by 王宇航

1.5.6

1、食品增加ktShowPrice是否打印價格
2、訂單增加kdsName,KDS在pos設備中的名稱
parent 1f552daa
......@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect"
artifactId = "Connect"
version = "1.5.5"
version = "1.5.6"
// 添加 POM 配置
// pom {
// name.set("GingerSoftConnect")
......
......@@ -26,6 +26,11 @@ public class FoodInfoBean {
*/
private double price;
/**
* 是否需要打印價格
* 0: 不打印 1:打印
*/
private int ktShowPrice;
/**
* 食品類型
*/
private int type;
......@@ -87,6 +92,14 @@ public class FoodInfoBean {
this.price = price;
}
public int getKtShowPrice() {
return ktShowPrice;
}
public void setKtShowPrice(int ktShowPrice) {
this.ktShowPrice = ktShowPrice;
}
public int getType() {
return this.type;
}
......
......@@ -61,6 +61,10 @@ public class OrderInfoBean implements SendMsgType {
*/
private String flyPrintInfo;
/**
* kds在Pos設備中的名稱
*/
private String kdsName;
/**
* 食品信息
*/
private List<FoodInfoBean> foodInfoBeanList;
......@@ -176,6 +180,15 @@ public class OrderInfoBean implements SendMsgType {
public void setFlyPrintInfo(String flyPrintInfo) {
this.flyPrintInfo = flyPrintInfo;
}
public String getKdsName() {
return kdsName;
}
public void setKdsName(String kdsName) {
this.kdsName = kdsName;
}
public List<FoodInfoBean> getFoodInfoBeanList() {
return foodInfoBeanList;
}
......
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