Commit 46aa9907 by 王宇航

1.5.7

1、是否顯示價格字段改名
parent 5c2f9362
...@@ -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.6" version = "1.5.7"
// 添加 POM 配置 // 添加 POM 配置
// pom { // pom {
// name.set("GingerSoftConnect") // name.set("GingerSoftConnect")
......
...@@ -29,7 +29,7 @@ public class FoodInfoBean { ...@@ -29,7 +29,7 @@ public class FoodInfoBean {
* 是否需要打印價格 * 是否需要打印價格
* 0: 不打印 1:打印 * 0: 不打印 1:打印
*/ */
private int ktShowPrice; private int showPrice;
/** /**
* 食品類型 * 食品類型
*/ */
...@@ -92,12 +92,12 @@ public class FoodInfoBean { ...@@ -92,12 +92,12 @@ public class FoodInfoBean {
this.price = price; this.price = price;
} }
public int getKtShowPrice() { public int getShowPrice() {
return ktShowPrice; return showPrice;
} }
public void setKtShowPrice(int ktShowPrice) { public void setShowPrice(int showPrice) {
this.ktShowPrice = ktShowPrice; this.showPrice = showPrice;
} }
public int getType() { public int getType() {
......
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