Files
klp-oa/klp-wms/src/main/java/com/klp/domain/vo/CurrentSituationAreaVO.java
2025-07-30 10:54:11 +08:00

29 lines
578 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.klp.domain.vo;
import lombok.Data;
import java.util.List;
/**
* 当前情况区视图对象
*
* @author klp
* @date 2025-01-27
*/
@Data
public class CurrentSituationAreaVO {
/**
* 订单所需的产品统计
*/
private List<OrderProductStatisticsVO> orderProductStatistics;
/**
* 根据BOM计算的原料需求产品维度
*/
private List<ProductMaterialRequirementVO> productMaterialRequirements;
/**
* 原料库存和需求情况
*/
private List<RawMaterialInventoryVO> rawMaterialInventory;
}