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

io.github.ealenxie.goodcang.warehouse.SetInventory Maven / Gradle / Ivy

The newest version!
package io.github.ealenxie.goodcang.warehouse;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class SetInventory {
    /**
     * 产品SKU
     */
    @JsonProperty("product_sku")
    private String productSku;
    /**
     * 仓库代码
     */
    @JsonProperty("warehouse_code")
    private String warehouseCode;
    /**
     * 上架时间
     */
    @JsonProperty("fifo_time")
    private String fifoTime;
    /**
     * 预警库龄
     */
    @JsonProperty("warning_age")
    private String warningAge;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy