Commit 870e8c77 by 王宇航

1.7.9

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