|
@@ -1,6 +1,7 @@
|
|
|
package com.java110.dto.groupBuy;
|
|
package com.java110.dto.groupBuy;
|
|
|
|
|
|
|
|
import com.java110.dto.PageDto;
|
|
import com.java110.dto.PageDto;
|
|
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
|
|
|
@@ -15,17 +16,18 @@ import java.util.Date;
|
|
|
public class GroupBuyDto extends PageDto implements Serializable {
|
|
public class GroupBuyDto extends PageDto implements Serializable {
|
|
|
|
|
|
|
|
private String specId;
|
|
private String specId;
|
|
|
-private String buyCount;
|
|
|
|
|
-private String amount;
|
|
|
|
|
-private String productId;
|
|
|
|
|
-private String groupId;
|
|
|
|
|
-private String persionId;
|
|
|
|
|
-private String batchId;
|
|
|
|
|
-private String storeId;
|
|
|
|
|
-private String persionName;
|
|
|
|
|
-private String groupPrice;
|
|
|
|
|
-private String buyId;
|
|
|
|
|
-private String state;
|
|
|
|
|
|
|
+ private String buyCount;
|
|
|
|
|
+ private String amount;
|
|
|
|
|
+ private String productId;
|
|
|
|
|
+ private String groupId;
|
|
|
|
|
+ private String groupProdName;
|
|
|
|
|
+ private String persionId;
|
|
|
|
|
+ private String batchId;
|
|
|
|
|
+ private String storeId;
|
|
|
|
|
+ private String persionName;
|
|
|
|
|
+ private String groupPrice;
|
|
|
|
|
+ private String buyId;
|
|
|
|
|
+ private String state;
|
|
|
|
|
|
|
|
|
|
|
|
|
private Date createTime;
|
|
private Date createTime;
|
|
@@ -36,73 +38,96 @@ private String state;
|
|
|
public String getSpecId() {
|
|
public String getSpecId() {
|
|
|
return specId;
|
|
return specId;
|
|
|
}
|
|
}
|
|
|
-public void setSpecId(String specId) {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setSpecId(String specId) {
|
|
|
this.specId = specId;
|
|
this.specId = specId;
|
|
|
}
|
|
}
|
|
|
-public String getBuyCount() {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getBuyCount() {
|
|
|
return buyCount;
|
|
return buyCount;
|
|
|
}
|
|
}
|
|
|
-public void setBuyCount(String buyCount) {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setBuyCount(String buyCount) {
|
|
|
this.buyCount = buyCount;
|
|
this.buyCount = buyCount;
|
|
|
}
|
|
}
|
|
|
-public String getAmount() {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getAmount() {
|
|
|
return amount;
|
|
return amount;
|
|
|
}
|
|
}
|
|
|
-public void setAmount(String amount) {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setAmount(String amount) {
|
|
|
this.amount = amount;
|
|
this.amount = amount;
|
|
|
}
|
|
}
|
|
|
-public String getProductId() {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getProductId() {
|
|
|
return productId;
|
|
return productId;
|
|
|
}
|
|
}
|
|
|
-public void setProductId(String productId) {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setProductId(String productId) {
|
|
|
this.productId = productId;
|
|
this.productId = productId;
|
|
|
}
|
|
}
|
|
|
-public String getGroupId() {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getGroupId() {
|
|
|
return groupId;
|
|
return groupId;
|
|
|
}
|
|
}
|
|
|
-public void setGroupId(String groupId) {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setGroupId(String groupId) {
|
|
|
this.groupId = groupId;
|
|
this.groupId = groupId;
|
|
|
}
|
|
}
|
|
|
-public String getPersionId() {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getPersionId() {
|
|
|
return persionId;
|
|
return persionId;
|
|
|
}
|
|
}
|
|
|
-public void setPersionId(String persionId) {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setPersionId(String persionId) {
|
|
|
this.persionId = persionId;
|
|
this.persionId = persionId;
|
|
|
}
|
|
}
|
|
|
-public String getBatchId() {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getBatchId() {
|
|
|
return batchId;
|
|
return batchId;
|
|
|
}
|
|
}
|
|
|
-public void setBatchId(String batchId) {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setBatchId(String batchId) {
|
|
|
this.batchId = batchId;
|
|
this.batchId = batchId;
|
|
|
}
|
|
}
|
|
|
-public String getStoreId() {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getStoreId() {
|
|
|
return storeId;
|
|
return storeId;
|
|
|
}
|
|
}
|
|
|
-public void setStoreId(String storeId) {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setStoreId(String storeId) {
|
|
|
this.storeId = storeId;
|
|
this.storeId = storeId;
|
|
|
}
|
|
}
|
|
|
-public String getPersionName() {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getPersionName() {
|
|
|
return persionName;
|
|
return persionName;
|
|
|
}
|
|
}
|
|
|
-public void setPersionName(String persionName) {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setPersionName(String persionName) {
|
|
|
this.persionName = persionName;
|
|
this.persionName = persionName;
|
|
|
}
|
|
}
|
|
|
-public String getGroupPrice() {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getGroupPrice() {
|
|
|
return groupPrice;
|
|
return groupPrice;
|
|
|
}
|
|
}
|
|
|
-public void setGroupPrice(String groupPrice) {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setGroupPrice(String groupPrice) {
|
|
|
this.groupPrice = groupPrice;
|
|
this.groupPrice = groupPrice;
|
|
|
}
|
|
}
|
|
|
-public String getBuyId() {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getBuyId() {
|
|
|
return buyId;
|
|
return buyId;
|
|
|
}
|
|
}
|
|
|
-public void setBuyId(String buyId) {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setBuyId(String buyId) {
|
|
|
this.buyId = buyId;
|
|
this.buyId = buyId;
|
|
|
}
|
|
}
|
|
|
-public String getState() {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getState() {
|
|
|
return state;
|
|
return state;
|
|
|
}
|
|
}
|
|
|
-public void setState(String state) {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setState(String state) {
|
|
|
this.state = state;
|
|
this.state = state;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -122,4 +147,12 @@ public void setState(String state) {
|
|
|
public void setStatusCd(String statusCd) {
|
|
public void setStatusCd(String statusCd) {
|
|
|
this.statusCd = statusCd;
|
|
this.statusCd = statusCd;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ public String getGroupProdName() {
|
|
|
|
|
+ return groupProdName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setGroupProdName(String groupProdName) {
|
|
|
|
|
+ this.groupProdName = groupProdName;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|