Commit bc146b20 by 王宇航

1.7.0

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