From b08b4b56f53e4a3458da98178c03d44c3688a914 Mon Sep 17 00:00:00 2001 From: zhoushihao <zsh19950802@163.com> Date: 星期四, 27 六月 2024 17:07:34 +0800 Subject: [PATCH] 下片功能已完成机械臂交互 待改进:界面新增人工出片功能,移除人工出片阈值校验 --- hangzhoumesParent/common/servicebase/src/main/java/com/mes/common/config/Const.java | 27 +++++++++++++++++++-------- 1 files changed, 19 insertions(+), 8 deletions(-) diff --git a/hangzhoumesParent/common/servicebase/src/main/java/com/mes/common/config/Const.java b/hangzhoumesParent/common/servicebase/src/main/java/com/mes/common/config/Const.java index 936d473..2100a97 100644 --- a/hangzhoumesParent/common/servicebase/src/main/java/com/mes/common/config/Const.java +++ b/hangzhoumesParent/common/servicebase/src/main/java/com/mes/common/config/Const.java @@ -131,13 +131,24 @@ * 6 鎷胯蛋 */ - public static final Integer TEMPERING_NEW =-1; - public static final Integer TEMPERING_OUT =0; - public static final Integer TEMPERING_DROP =1; - public static final Integer TEMPERING_START =2; - public static final Integer TEMPERING_SUCCESS =3; - public static final Integer TEMPERING_END =4; - public static final Integer TEMPERING_DAMAGE =5; - public static final Integer TEMPERING_TAKE =6; + public static final Integer TEMPERING_NEW = -1; + public static final Integer TEMPERING_OUT = 0; + public static final Integer TEMPERING_DROP = 1; + public static final Integer TEMPERING_START = 2; + public static final Integer TEMPERING_SUCCESS = 3; + public static final Integer TEMPERING_END = 4; + public static final Integer TEMPERING_DAMAGE = 5; + public static final Integer TEMPERING_TAKE = 6; + + /** + * 涓嬬墖 + */ + /** + * 鎵ц绾胯矾鏍煎瓙淇℃伅 + */ + public static final List<Integer> G06_WORK_STATION = Arrays.asList(1, 2, 3); + public static final List<Integer> G11_WORK_STATION = Arrays.asList(4, 5, 6); + public static final List<Integer> G13_WORK_STATION = Arrays.asList(7); + } -- Gitblit v1.8.0