package com.matrix.system.shopXcx.pojo;
|
|
/**
|
* 库存统计对象
|
*/
|
public class SalesStatistics {
|
|
/**
|
* 产品标题
|
*/
|
private String title;
|
/**
|
* 库存
|
*/
|
private String name;
|
/**
|
* 售价
|
*/
|
private Double price;
|
/**
|
* 销量
|
*/
|
private Double orderCount;
|
/**
|
* 销售额
|
*/
|
private Double orderPrice;
|
/**
|
* 毛利
|
*/
|
private Double profit;
|
/**
|
* 进货价
|
*/
|
private Double purchasePrice;
|
|
/**
|
* 库存金额
|
*/
|
private Double storePrice;
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Double getPrice() {
|
return price;
|
}
|
|
public void setPrice(Double price) {
|
this.price = price;
|
}
|
|
public Double getOrderCount() {
|
return orderCount;
|
}
|
|
public void setOrderCount(Double orderCount) {
|
this.orderCount = orderCount;
|
}
|
|
public Double getOrderPrice() {
|
return orderPrice;
|
}
|
|
public void setOrderPrice(Double orderPrice) {
|
this.orderPrice = orderPrice;
|
}
|
|
public Double getProfit() {
|
return profit;
|
}
|
|
public void setProfit(Double profit) {
|
this.profit = profit;
|
}
|
|
public Double getPurchasePrice() {
|
return purchasePrice;
|
}
|
|
public void setPurchasePrice(Double purchasePrice) {
|
this.purchasePrice = purchasePrice;
|
}
|
|
public Double getStorePrice() {
|
return storePrice;
|
}
|
|
public void setStorePrice(Double storePrice) {
|
this.storePrice = storePrice;
|
}
|
}
|