Commit bda8aad3 by 徐高华

订单

parent 27e67d4b
package com.gic.haoban.manage.web.vo.order;
import java.io.Serializable;
public class OrderCountVO implements Serializable {
/**
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
*/
private static final long serialVersionUID = 6650213319733017895L;
private int total;
private int noDeliverCount;
private int deliverCount;
public int getTotal() {
return total;
}
public int getNoDeliverCount() {
return noDeliverCount;
}
public int getDeliverCount() {
return deliverCount;
}
public void setTotal(int total) {
this.total = total;
}
public void setNoDeliverCount(int noDeliverCount) {
this.noDeliverCount = noDeliverCount;
}
public void setDeliverCount(int deliverCount) {
this.deliverCount = deliverCount;
}
}
......@@ -56,14 +56,14 @@ public class OrderListItemVO implements Serializable {
private Double payAmount;
// 库存
private int stock ;
private int stortStock ;
public int getStock() {
return stock;
public int getStortStock() {
return stortStock;
}
public void setStock(int stock) {
this.stock = stock;
public void setStortStock(int stortStock) {
this.stortStock = stortStock;
}
public String getOrderItemId() {
......
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