数据看板更新前后端

This commit is contained in:
2025-07-30 10:54:11 +08:00
parent 5c42bf666a
commit 064d1dd41b
18 changed files with 1414 additions and 9 deletions

View File

@@ -0,0 +1,53 @@
package com.klp.domain.vo;
import lombok.Data;
/**
* 原料维度推荐视图对象
*
* @author klp
* @date 2025-01-27
*/
@Data
public class MaterialRecommendationVO {
/**
* 原料名称
*/
private String materialName;
/**
* 原料编号
*/
private String materialCode;
/**
* 推荐采购数量
*/
private Double recommendedPurchaseQuantity;
/**
* 推荐供应商
*/
private String recommendedSupplier;
/**
* 推荐原因
*/
private String recommendationReason;
/**
* 紧急程度
*/
private String urgencyLevel;
/**
* 预计到货时间
*/
private String estimatedArrivalTime;
/**
* 建议操作
*/
private String suggestedAction;
}