ZengTao
2025-05-20 dbbf0c051ef05480a0becee07974b80e32b1cb8f
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
package com.mes.bigstorage.entity.dto;
 
import lombok.Data;
 
/**
 * @Author : zhoush
 * @Date: 2024/6/11 16:45
 * @Description:
 */
@Data
public class BigStorageSummaryDTO {
    /**
     * 工程号
     */
    private String engineerId;
 
    /**
     * 笼内总炉数
     */
    private Integer countTemp;
 
    /**
     * 笼内玻璃数量
     */
    private Integer countGlass;
 
    /**
     * 面积
     */
    private Double area;
 
    /**
     * 满炉数
     */
    private Integer fullTemp;
 
    /**
     * 占用格子数
     */
    private Integer countSlot;
 
    /**
     * 进度
     */
    private Double percent;
 
}