Commit 870e8c77 by 王宇航

1.7.9

字段isStop,isSoldOut改為int
parent 2c48ada4
...@@ -55,7 +55,7 @@ afterEvaluate { ...@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect" groupId = "com.gingersoft.connect"
artifactId = "Connect" artifactId = "Connect"
version = "1.7.8" version = "1.7.9"
// 添加 POM 配置 // 添加 POM 配置
// pom { // pom {
// name.set("GingerSoftConnect") // name.set("GingerSoftConnect")
......
...@@ -83,6 +83,22 @@ public class SoldOutFoodInfoBean extends SendMsgType { ...@@ -83,6 +83,22 @@ public class SoldOutFoodInfoBean extends SendMsgType {
this.inventoryQuantity = inventoryQuantity; this.inventoryQuantity = inventoryQuantity;
} }
public int getIsStop() {
return isStop;
}
public void setIsStop(int isStop) {
this.isStop = isStop;
}
public int getIsSoldOut() {
return isSoldOut;
}
public void setIsSoldOut(int isSoldOut) {
this.isSoldOut = isSoldOut;
}
public double getPrice() { public double getPrice() {
return price; return price;
} }
...@@ -138,20 +154,4 @@ public class SoldOutFoodInfoBean extends SendMsgType { ...@@ -138,20 +154,4 @@ public class SoldOutFoodInfoBean extends SendMsgType {
public void setSoldOutTime(String soldOutTime) { public void setSoldOutTime(String soldOutTime) {
this.soldOutTime = soldOutTime; this.soldOutTime = soldOutTime;
} }
public Boolean getStop() {
return isStop;
}
public void setStop(Boolean stop) {
isStop = stop;
}
public Boolean getSoldOut() {
return isSoldOut;
}
public void setSoldOut(Boolean soldOut) {
isSoldOut = soldOut;
}
} }
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