package com.java110.po.productSpecValue;
|
|
import java.io.Serializable;
|
|
public class ProductSpecValuePo implements Serializable {
|
|
private String specId;
|
private String valueId;
|
private String productId;
|
private String price;
|
private String otPrice;
|
private String costPrice;
|
private String vipPrice;
|
private String statusCd = "0";
|
private String storeId;
|
private String stock;
|
private String sales;
|
private String isDefault;
|
|
public String getSpecId() {
|
return specId;
|
}
|
|
public void setSpecId(String specId) {
|
this.specId = specId;
|
}
|
|
public String getValueId() {
|
return valueId;
|
}
|
|
public void setValueId(String valueId) {
|
this.valueId = valueId;
|
}
|
|
public String getProductId() {
|
return productId;
|
}
|
|
public void setProductId(String productId) {
|
this.productId = productId;
|
}
|
|
public String getPrice() {
|
return price;
|
}
|
|
public void setPrice(String price) {
|
this.price = price;
|
}
|
|
public String getOtPrice() {
|
return otPrice;
|
}
|
|
public void setOtPrice(String otPrice) {
|
this.otPrice = otPrice;
|
}
|
|
public String getCostPrice() {
|
return costPrice;
|
}
|
|
public void setCostPrice(String costPrice) {
|
this.costPrice = costPrice;
|
}
|
|
public String getVipPrice() {
|
return vipPrice;
|
}
|
|
public void setVipPrice(String vipPrice) {
|
this.vipPrice = vipPrice;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getStoreId() {
|
return storeId;
|
}
|
|
public void setStoreId(String storeId) {
|
this.storeId = storeId;
|
}
|
|
public String getStock() {
|
return stock;
|
}
|
|
public void setStock(String stock) {
|
this.stock = stock;
|
}
|
|
public String getSales() {
|
return sales;
|
}
|
|
public void setSales(String sales) {
|
this.sales = sales;
|
}
|
|
public String getIsDefault() {
|
return isDefault;
|
}
|
|
public void setIsDefault(String isDefault) {
|
this.isDefault = isDefault;
|
}
|
}
|