数据看板更新前后端

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,48 @@
package com.klp.domain.vo;
import lombok.Data;
/**
* 订单维度推荐视图对象
*
* @author klp
* @date 2025-01-27
*/
@Data
public class OrderRecommendationVO {
/**
* 订单编号
*/
private String orderCode;
/**
* 客户名称
*/
private String customerName;
/**
* 订单状态
*/
private String orderStatus;
/**
* 推荐优先级
*/
private String priority;
/**
* 推荐原因
*/
private String recommendationReason;
/**
* 建议操作
*/
private String suggestedAction;
/**
* 预计完成时间
*/
private String estimatedCompletionTime;
}