package cn.iocoder.yudao.module.mes.api.wms.dto;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
/**
|
* WMS 库存明细响应 DTO
|
*/
|
@Data
|
public class WmsStockDetailRespDTO {
|
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
/**
|
* 物料ID
|
*/
|
private Long itemId;
|
|
/**
|
* 物料编码
|
*/
|
private String itemCode;
|
|
/**
|
* 物料名称
|
*/
|
private String itemName;
|
|
/**
|
* 仓库ID
|
*/
|
private Long warehouseId;
|
|
/**
|
* 仓库名称
|
*/
|
private String warehouseName;
|
|
/**
|
* 库位ID
|
*/
|
private Long locationId;
|
|
/**
|
* 区域ID
|
*/
|
private Long areaId;
|
|
/**
|
* 批次ID
|
*/
|
private Long batchId;
|
|
/**
|
* 批次编码
|
*/
|
private String batchCode;
|
|
/**
|
* 供应商ID
|
*/
|
private Long vendorId;
|
|
/**
|
* 数量
|
*/
|
private BigDecimal quantity;
|
|
/**
|
* 创建时间
|
*/
|
private LocalDateTime createTime;
|
|
}
|