package cn.iocoder.yudao.module.wms.api.inventory.dto;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
/**
|
* WMS 库存响应 DTO
|
*
|
* @author 芋道源码
|
*/
|
@Data
|
public class WmsInventoryRespDTO {
|
|
/**
|
* 库存 ID
|
*/
|
private Long id;
|
|
/**
|
* SKU 编号
|
*/
|
private Long skuId;
|
|
/**
|
* SKU 名称
|
*/
|
private String skuName;
|
|
/**
|
* 仓库编号
|
*/
|
private Long warehouseId;
|
|
/**
|
* 仓库名称
|
*/
|
private String warehouseName;
|
|
/**
|
* 库存数量
|
*/
|
private BigDecimal quantity;
|
|
/**
|
* 预留数量
|
*/
|
private BigDecimal reserveQuantity;
|
|
/**
|
* 可用数量(库存数量 - 预留数量)
|
*/
|
private BigDecimal availableQuantity;
|
|
/**
|
* 更新时间
|
*/
|
private LocalDateTime updateTime;
|
|
}
|