数据看板更新前后端
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user