Commit 49ea8db4 by 王宇航

1.8.3

FoodInfoBean新增printSet
parent c10b901f
...@@ -55,7 +55,7 @@ afterEvaluate { ...@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect" groupId = "com.gingersoft.connect"
artifactId = "Connect" artifactId = "Connect"
version = "1.8.2" version = "1.8.3"
// 添加 POM 配置 // 添加 POM 配置
// pom { // pom {
// name.set("GingerSoftConnect") // name.set("GingerSoftConnect")
......
...@@ -47,6 +47,10 @@ public class FoodInfoBean { ...@@ -47,6 +47,10 @@ public class FoodInfoBean {
* true 首頁也會顯示紅色 false 首頁顯示設置頁面的顏色 * true 首頁也會顯示紅色 false 首頁顯示設置頁面的顏色
*/ */
private boolean isPrintRedLetter; private boolean isPrintRedLetter;
/**
* 打印位置,匯總模式用到
*/
private String printSet;
public String getFoodId() { public String getFoodId() {
return this.foodId; return this.foodId;
...@@ -135,4 +139,12 @@ public class FoodInfoBean { ...@@ -135,4 +139,12 @@ public class FoodInfoBean {
public void setOrderDetailsId(Long orderDetailsId) { public void setOrderDetailsId(Long orderDetailsId) {
this.orderDetailsId = orderDetailsId; this.orderDetailsId = orderDetailsId;
} }
public String getPrintSet() {
return printSet;
}
public void setPrintSet(String printSet) {
this.printSet = printSet;
}
} }
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