eleme.openapi.sdk.api.entity.product.ChannelSkuDTO Maven / Gradle / Ivy
The newest version!
package eleme.openapi.sdk.api.entity.product;
import eleme.openapi.sdk.api.enumeration.product.*;
import eleme.openapi.sdk.api.entity.product.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class ChannelSkuDTO{
/**
* 规格id
*/
private Long skuId;
public Long getSkuId() {
return skuId;
}
public void setSkuId(Long skuId) {
this.skuId = skuId;
}
/**
* 原价(单位:分)
*/
private Long originPrice;
public Long getOriginPrice() {
return originPrice;
}
public void setOriginPrice(Long originPrice) {
this.originPrice = originPrice;
}
/**
* 定价(单位:分)
*/
private Long fixedPrice;
public Long getFixedPrice() {
return fixedPrice;
}
public void setFixedPrice(Long fixedPrice) {
this.fixedPrice = fixedPrice;
}
/**
* 库存
*/
private Long stock;
public Long getStock() {
return stock;
}
public void setStock(Long stock) {
this.stock = stock;
}
/**
* 最大库存
*/
private Long maxStock;
public Long getMaxStock() {
return maxStock;
}
public void setMaxStock(Long maxStock) {
this.maxStock = maxStock;
}
/**
* 库存状态
*/
private Integer stockStatus;
public Integer getStockStatus() {
return stockStatus;
}
public void setStockStatus(Integer stockStatus) {
this.stockStatus = stockStatus;
}
/**
* 条形码
*/
private String barCode;
public String getBarCode() {
return barCode;
}
public void setBarCode(String barCode) {
this.barCode = barCode;
}
/**
* 外部码
*/
private String extCode;
public String getExtCode() {
return extCode;
}
public void setExtCode(String extCode) {
this.extCode = extCode;
}
/**
* 商品重量(单位:g)
*/
private Integer weight;
public Integer getWeight() {
return weight;
}
public void setWeight(Integer weight) {
this.weight = weight;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy