Commit 1af4de12 by 王宇航

1.6.6

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