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

com.dft.shein.model.product.GoodsInventory Maven / Gradle / Ivy

The newest version!
package com.dft.shein.model.product;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;

import java.util.List;

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class GoodsInventory {

    private Integer inventoryQuantity;
    private Integer lockedQuantity;
    private Integer tempLockQuantity;
    private Object sellerSku;
    private Integer usableInventory;
    private String skuCode;
    private List warehouseInventoryList;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy