DisplayData.java
1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package com.huaheng.api.tv.domain;
import lombok.Data;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* @author xcq
*/
@Data
public class DisplayData {
/**
* 顶部数据
*/
private Map<String, Object> topData = new HashMap<>();
/**
* 出入库热度数据
*/
private List<ProjectBean> projectBeanList = new ArrayList<>();
/**
* 库龄数据
*/
private List<WarehouseLowBean> warehouseLowBeanList = new ArrayList<>();
/**
* 库龄饼状图
*/
private List<ProjectBean> topBeanList = new ArrayList<>();
/**
* 入库统计数据
*/
private List<ProjectBean> receiptStatistics = new ArrayList<>();
/**
* 出库统计数据
*/
private List<ProjectBean> shipmentStatistics = new ArrayList<>();
/**
* 入库情况数据
*/
private List<ReceiptSituation> receiptSituationList = new ArrayList<>();
/**
* 出库情况数据
*/
private List<ShipmentSituation> shipmentSituationList = new ArrayList<>();
/**
* 入库趋势图
*/
private List<ProjectBean> receiptTrend = new ArrayList<>();
/**
* 出库趋势图
*/
private List<ProjectBean> shipmentTrend = new ArrayList<>();
/**
* 物料预警数据
*/
private List<MaterialWarningList> materialWarningLists = new ArrayList<>();
/**
* 库存等级图表
*/
private List inventoryLevelChart = new ArrayList();
/**
* 入库等级趋势图
*/
private Map receiptLevelTrend = new HashMap<>();
/**
* 出库等级趋势图
*/
private Map shipmentLevelTrend = new HashMap<>();
}