zhoushihao
2025-04-10 ca48f8c87bb927c7be7f02b7eaaf71996e759bff
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
87
88
89
90
91
92
93
94
95
96
package com.mes.common.config;
 
 
/**
 * @Author : zt
 * @Date: 2025/4/08 10:33
 * @Description:
 */
public class ConstSysConfig {
 
 
    // 钢化炉数阈值
    public static final Integer CACHE_THRESHOLD = 1;
    // 磨边参数换算率
    public static final Integer CACHE_RATIO = 2;
    // 卧理最大长边
    public static final Integer CACHE_CACHE_WIDTH = 3;
    // 卧理最大短边
    public static final Integer CACHE_CACHE_HEIGHT = 4;
    // 磨边二线最大长边
    public static final Integer CACHE_MAX_FIRST_LENGTH = 5;
    // 磨边二线最大短边
    public static final Integer CACHE_MAX_SECOND_LENGTH = 6;
    // 磨边一线最大长边
    public static final Integer CACHE_MIN_ONE_FIRST_LENGTH = 7;
    // 磨边一线最大短边
    public static final Integer CACHE_MIN_ONE_SECOND_LENGTH = 8;
    // 磨边二线最大长边
    public static final Integer CACHE_MIN_TWO_FIRST_LENGTH = 9;
    // 磨边二线最大短边
    public static final Integer CACHE_MIN_TWO_SECOND_LENGTH = 10;
    // 卧理玻璃间隙
    public static final Integer CACHE_GLASS_GAP = 1;
    // 卧理格子宽度
    public static final Integer CACHE_CELL_LENGTH = 12;
    // 排序方式
    public static final Integer CACHE_SEQUENCE_ORDER_FALSE = 13;
    // 排序方式
    public static final Integer CACHE_SEQUENCE_ORDER_TRUE = 14;
 
    // 一炉玻璃占用格子数
    public static final Integer VERTICAL_MINCOUNT = 15;
    // 大车宽度
    public static final Integer VERTICAL_CAR_WIDTH = 16;
    // 格子宽度
    public static final Integer VERTICAL_SLOT_WIDTH = 17;
    // 进片车最大玻璃数
    public static final Integer VERTICAL_IN_CAR_SIZE = 18;
    // 出片车最大玻璃数
    public static final Integer VERTICAL_OUT_CAR_SIZE = 19;
    // 玻璃间隙
    public static final Integer VERTICAL_GLASS_GAP = 20;
    // 钢化炉长度
    public static final Integer VERTICAL_X_MAX_SIZE = 21;
    // 格子最大高度
    public static final Integer VERTICAL_SLOT_MAX_HEIGHT = 22;
    // 格子最大厚度
    public static final Integer VERTICAL_SLOT_MAXTHICKNESS = 23;
    // 钢出目标位置
    public static final Integer VERTICAL_TEMPERING_OUT_TARGET_POSITION = 24;
    // 人工下片目标位置
    public static final Integer VERTICAL_ARTIFICIAL_OUT_TARGET_POSITION = 25;
 
    // 排序方式
    public static final Integer HOLLOW_SEQUENCE_ORDER = 26;
    // 一炉玻璃占用格子数
    public static final Integer HOLLOW_MINCOUNT = 27;
    // 大车宽度
    public static final Integer HOLLOW_CAR_WIDTH = 28;
    // 格子宽度
    public static final Integer HOLLOW_SLOT_WIDTH = 29;
    // 进片车最大玻璃数
    public static final Integer HOLLOW_IN_CAR_SIZE = 30;
    // 出片车最大玻璃数
    public static final Integer HOLLOW_OUT_CAR_SIZE = 31;
    // 玻璃间隙
    public static final Integer HOLLOW_GLASS_GAP = 32;
    // 钢化炉长度
    public static final Integer HOLLOW_X_MAX_SIZE = 33;
    // 钢出目标位置
    public static final Integer HOLLOW_TEMPERING_OUT_TARGET_POSITION = 34;
    // 人工下片目标位置
    public static final Integer HOLLOW_ARTIFICIAL_OUT_TARGET_POSITION = 35;
    // 格子最大高度
    public static final Integer HOLLOW_SLOT_MAX_HEIGHT = 36;
    // 格子最大厚度
    public static final Integer HOLLOW_SLOT_MAXTHICKNESS = 37;
 
    // 钢化炉长度
    public static final Integer TEMPERING_WIDTH = 38;
    // 钢化炉宽度
    public static final Integer TEMPERING_HEIGHT = 39;
 
 
 
}