huang
15 小时以前 04914a9997afbbead6f8adbb9d9c40e05b2edbd1
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
package com.mes.interaction.largeglass.config;
 
import com.mes.interaction.largeglass.model.GridRange;
import lombok.Data;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * 大理片笼配置
 * 对应 extraParams.deviceLogic 中的字段
 */
@Data
public class LargeGlassConfig {
 
    /**
     * 格子范围列表
     * 例如:第一行1~52格,第二行53~101格
     */
    private List<GridRange> gridRanges = new ArrayList<>();
 
    /**
     * 每格长度(mm)
     */
    private Integer gridLength = 2000;
 
    /**
     * 每格宽度(mm)
     */
    private Integer gridWidth = 1500;
 
    /**
     * 每格厚度(mm)
     */
    private Integer gridThickness = 5;
 
    /**
     * 处理时间(秒)
     * 大理片笼处理玻璃的时间,默认30秒
     */
    private Integer processTimeSeconds = 30;
}