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;
|
|
|
|
}
|