Commit c10b901f by 王宇航

1.8.2

FoodInfoBean新增orderDetailsId
parent a076d201
...@@ -55,7 +55,7 @@ afterEvaluate { ...@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect" groupId = "com.gingersoft.connect"
artifactId = "Connect" artifactId = "Connect"
version = "1.8.1" version = "1.8.2"
// 添加 POM 配置 // 添加 POM 配置
// pom { // pom {
// name.set("GingerSoftConnect") // name.set("GingerSoftConnect")
......
...@@ -14,6 +14,10 @@ public class FoodInfoBean { ...@@ -14,6 +14,10 @@ public class FoodInfoBean {
*/ */
private Long orderId; private Long orderId;
/** /**
* 食品在訂單表中的id
*/
private Long orderDetailsId;
/**
* 食品名稱 * 食品名稱
*/ */
private String foodName; private String foodName;
...@@ -123,4 +127,12 @@ public class FoodInfoBean { ...@@ -123,4 +127,12 @@ public class FoodInfoBean {
public void setIsPrintRedLetter(boolean isPrintRedLetter) { public void setIsPrintRedLetter(boolean isPrintRedLetter) {
this.isPrintRedLetter = isPrintRedLetter; this.isPrintRedLetter = isPrintRedLetter;
} }
public Long getOrderDetailsId() {
return orderDetailsId;
}
public void setOrderDetailsId(Long orderDetailsId) {
this.orderDetailsId = orderDetailsId;
}
} }
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