All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.api.entity.product.OUpdateStockByExtCodeRequest Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show 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 OUpdateStockByExtCodeRequest{

    /**
     * 商品规格extCode
     */
    private String specExtCode;
    public String getSpecExtCode() {
        return specExtCode;
    }
    public void setSpecExtCode(String specExtCode) {
        this.specExtCode = specExtCode;
    }
    
    /**
     * 库存
     */
    private Integer stock;
    public Integer getStock() {
        return stock;
    }
    public void setStock(Integer stock) {
        this.stock = stock;
    }
    
    /**
     * 最大库存
     */
    private Integer maxStock;
    public Integer getMaxStock() {
        return maxStock;
    }
    public void setMaxStock(Integer maxStock) {
        this.maxStock = maxStock;
    }
    
    /**
     * 库存状态
     */
    private Integer stockStatus;
    public Integer getStockStatus() {
        return stockStatus;
    }
    public void setStockStatus(Integer stockStatus) {
        this.stockStatus = stockStatus;
    }
    
    /**
     * 库存类型
     */
    private Integer stockType;
    public Integer getStockType() {
        return stockType;
    }
    public void setStockType(Integer stockType) {
        this.stockType = stockType;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy