From 6baf7c97ad8fd184224583550e8d2336c257f0dd Mon Sep 17 00:00:00 2001 From: LENOVO <1793460677@qq.com> Date: Thu, 11 Apr 2024 17:50:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=BC=80=E7=AE=B1=E5=86=99=E5=85=A5?= =?UTF-8?q?=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../un_box_lable_conveyor/ItemProtocol.java | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/acs2/nladmin-system/nlsso-server/src/main/java/org/nl/acs/device_driver/one_conveyor/un_box_lable_conveyor/ItemProtocol.java b/acs2/nladmin-system/nlsso-server/src/main/java/org/nl/acs/device_driver/one_conveyor/un_box_lable_conveyor/ItemProtocol.java index 30c3e4afd..f1b52df4a 100644 --- a/acs2/nladmin-system/nlsso-server/src/main/java/org/nl/acs/device_driver/one_conveyor/un_box_lable_conveyor/ItemProtocol.java +++ b/acs2/nladmin-system/nlsso-server/src/main/java/org/nl/acs/device_driver/one_conveyor/un_box_lable_conveyor/ItemProtocol.java @@ -75,8 +75,42 @@ public class ItemProtocol { */ public static String item_to_task = "to_task"; + /** + * 下发贴标数量 + */ + public static String item_to_print_qty = "to_print_qty"; + + /** + * 下发使用打印机 + */ + public static String item_to_print_device = "to_print_device"; + + + /** + *木箱长度 + */ + public static String item_to_length = "to_length"; + /** + *木箱宽度 + */ + public static String item_to_width = "to_width"; + /** + *木箱高度 + */ + public static String item_to_height = "to_height"; + + /** + *干燥机模板 + */ + public static String item_to_desiccant = "to_desiccant"; + + /** + *下发捆扎次数 + */ + public static String item_to_binding_times = "to_binding_times"; + private UnBoxLableConveyorDeviceDriver driver; public String getMaterialBarCode() { @@ -179,6 +213,15 @@ public class ItemProtocol { list.add(new ItemDto(item_to_target, "下发目标站", "DB601.W4")); list.add(new ItemDto(item_to_container_type, "下发托盘类型", "DB601.W6")); list.add(new ItemDto(item_to_task, "下发任务号", "DB601.D8")); + list.add(new ItemDto(item_to_print_qty, "下发贴标数量", "DB601.D9")); + list.add(new ItemDto(item_to_print_device, "下发贴标数量", "DB601.D10")); + list.add(new ItemDto(item_to_length, "木箱长度", "DB601.W14")); + list.add(new ItemDto(item_to_width, "木箱宽度", "DB601.W16")); + list.add(new ItemDto(item_to_height, "木箱高度", "DB601.W18")); + list.add(new ItemDto(item_to_binding_times, "下发捆扎次数", "DB601.W20")); + list.add(new ItemDto(item_to_desiccant, "干燥机模板", "DB601.W22")); + + return list; }