Commit bc146b20 by 王宇航

1.7.0

新增沽清食品的背景顏色和文字顏色
parent 381ca591
...@@ -55,7 +55,7 @@ afterEvaluate { ...@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect" groupId = "com.gingersoft.connect"
artifactId = "Connect" artifactId = "Connect"
version = "1.6.9" version = "1.7.0"
// 添加 POM 配置 // 添加 POM 配置
// pom { // pom {
// name.set("GingerSoftConnect") // name.set("GingerSoftConnect")
......
...@@ -35,6 +35,10 @@ public class SoldOutFoodInfoBean extends SendMsgType { ...@@ -35,6 +35,10 @@ public class SoldOutFoodInfoBean extends SendMsgType {
*/ */
private String parentId; private String parentId;
private String bgColor;
private String fontColor;
public String getFoodId() { public String getFoodId() {
return foodId; return foodId;
} }
...@@ -51,12 +55,12 @@ public class SoldOutFoodInfoBean extends SendMsgType { ...@@ -51,12 +55,12 @@ public class SoldOutFoodInfoBean extends SendMsgType {
this.foodName = foodName; this.foodName = foodName;
} }
public String getQuantity() { public String getInventoryQuantity() {
return inventoryQuantity; return inventoryQuantity;
} }
public void setQuantity(String quantity) { public void setInventoryQuantity(String inventoryQuantity) {
this.inventoryQuantity = quantity; this.inventoryQuantity = inventoryQuantity;
} }
public double getPrice() { public double getPrice() {
...@@ -82,4 +86,20 @@ public class SoldOutFoodInfoBean extends SendMsgType { ...@@ -82,4 +86,20 @@ public class SoldOutFoodInfoBean extends SendMsgType {
public void setParentId(String parentId) { public void setParentId(String parentId) {
this.parentId = parentId; this.parentId = parentId;
} }
public String getBgColor() {
return bgColor;
}
public void setBgColor(String bgColor) {
this.bgColor = bgColor;
}
public String getFontColor() {
return fontColor;
}
public void setFontColor(String fontColor) {
this.fontColor = fontColor;
}
} }
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