huang
2025-12-05 73aa66976e35252378be3f09be2474193ccd0bf6
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package com.mes.sysconst;
 
/**
 * @Author : zhoush
 * @Date: 2025/6/17 17:10
 * @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 = 11;
 
    /** 卧理格子宽度 */
    public static final Integer CACHE_CELL_LENGTH = 12;
 
    /** 二号线最大厚度(不包括) */
    public static final Integer CACHE_MAX_THICKNESS = 13;
 
    /** 钢化出片排序方式 */
    public static final Integer CACHE_SEQUENCE_ORDER_TRUE = 14;
 
    /** 一炉玻璃占用格子数(调度) */
    public static final Integer VERTICAL_MIN_COUNT = 15;
 
    /** 大车宽度 */
    public static final Integer VERTICAL_CAR_WIDTH = 16;
 
    /** 格子宽度 */
    public static final Integer VERTICAL_SLOT_WIDTH = 17;
 
    /** 进片车最大玻璃数 - 1 */
    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_MAX_THICKNESS = 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_CAR_WIDTH = 26;
 
    /** 格子宽度 */
    public static final Integer HOLLOW_SLOT_WIDTH = 27;
 
    /** 进片车最大玻璃数 - 1 */
    public static final Integer HOLLOW_IN_CAR_SIZE = 28;
 
    /** 出片车最大玻璃数 */
    public static final Integer HOLLOW_OUT_CAR_SIZE = 29;
 
    /** 玻璃间隙 */
    public static final Integer HOLLOW_GLASS_GAP = 30;
 
    /** 格子最大高度 */
    public static final Integer HOLLOW_SLOT_MAX_HEIGHT = 31;
 
    /** 格子最大厚度 */
    public static final Integer HOLLOW_SLOT_MAX_THICKNESS = 32;
 
    /** 钢化炉长度 */
    public static final Integer TEMPERING_WIDTH = 33;
 
    /** 钢化炉宽度 */
    public static final Integer TEMPERING_HEIGHT = 34;
 
    /** 钢化前大理片 8mm 厚度玻璃间距 */
    public static final Integer VERTICAL_GLASS_GAP_8 = 35;
 
    /** 钢化前大理片 10mm 厚度玻璃间距 */
    public static final Integer VERTICAL_GLASS_GAP_10 = 36;
 
    /** 钢化前大理片 12mm 厚度玻璃间距 */
    public static final Integer VERTICAL_GLASS_GAP_12 = 37;
 
    /** 中空大理片 8mm 厚度玻璃间距 */
    public static final Integer HOLLOW_GLASS_GAP_8 = 38;
 
    /** 中空大理片 10mm 厚度玻璃间距 */
    public static final Integer HOLLOW_GLASS_GAP_10 = 39;
 
    /** 中空大理片 12mm 厚度玻璃间距 */
    public static final Integer HOLLOW_GLASS_GAP_12 = 40;
 
 
 
}