Commit 1af4de12 by 王宇航

1.6.6

parent 7458e64d
......@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect"
artifactId = "Connect"
version = "1.6.5"
version = "1.6.6"
// 添加 POM 配置
// pom {
// name.set("GingerSoftConnect")
......
......@@ -3,5 +3,5 @@ package com.gingersoft.connect.bean
class ResultBean(
val success: Boolean = true,
val errorMsg: String = "",
val data: SendMsgType? = null
val data: Any? = null
)
......@@ -3,7 +3,7 @@ package com.gingersoft.connect.bean;
/**
* 沽清用的食品信息類
*/
public class SoldOutFoodInfoBean {
public class SoldOutFoodInfoBean extends SendMsgType {
/**
* 食品id
*/
......@@ -13,9 +13,9 @@ public class SoldOutFoodInfoBean {
*/
private String foodName;
/**
* 食品數量
* 库存數量
*/
private Integer quantity;
private String inventoryQuantity;
/**
* 食品金額
*/
......@@ -51,12 +51,12 @@ public class SoldOutFoodInfoBean {
this.foodName = foodName;
}
public Integer getQuantity() {
return quantity;
public String getQuantity() {
return inventoryQuantity;
}
public void setQuantity(Integer quantity) {
this.quantity = quantity;
public void setQuantity(String quantity) {
this.inventoryQuantity = quantity;
}
public double getPrice() {
......
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