|
|
@ -35,11 +35,13 @@ public class ItemProtocol { |
|
|
|
//当前贴标工单明细号
|
|
|
|
public static String item_labeling_order = "labeling_order"; |
|
|
|
//当前贴标工单明细号贴标合格数
|
|
|
|
public static String item_detail_rlabeling_qualified_qty = "detail_rlabeling_qualified_qty"; |
|
|
|
public static String item_detail_labeling_qualified_qty = "detail_labeling_qualified_qty"; |
|
|
|
//当前贴标工单明细号贴标数
|
|
|
|
public static String item_detail_rlabeling_qty = "detail_rlabeling_qty"; |
|
|
|
public static String item_detail_labeling_qty = "detail_labeling_qty"; |
|
|
|
//设备就绪
|
|
|
|
public static String item_ready = "ready"; |
|
|
|
public static String item_clear = "clear"; |
|
|
|
public static String item_pause = "pause"; |
|
|
|
public static String item_line_speed = "line_speed"; |
|
|
|
public static String item_feeding_mouth = "feeding_mouth"; |
|
|
|
public static String item_is_lettering = "is_lettering"; |
|
|
@ -156,20 +158,25 @@ public class ItemProtocol { |
|
|
|
return this.getOpcIntegerValue(item_labeling_order); |
|
|
|
} |
|
|
|
|
|
|
|
public int getDetail_rlabeling_qualified_qty() { |
|
|
|
return this.getOpcIntegerValue(item_detail_rlabeling_qualified_qty); |
|
|
|
public int getDetail_labeling_qualified_qty() { |
|
|
|
return this.getOpcIntegerValue(item_detail_labeling_qualified_qty); |
|
|
|
} |
|
|
|
|
|
|
|
public int getDetail_rlabeling_qty() { |
|
|
|
return this.getOpcIntegerValue(item_detail_rlabeling_qty); |
|
|
|
public int getDetail_labeling_qty() { |
|
|
|
return this.getOpcIntegerValue(item_detail_labeling_qty); |
|
|
|
} |
|
|
|
|
|
|
|
public int getReady() { |
|
|
|
return this.getOpcIntegerValue(item_ready); |
|
|
|
} |
|
|
|
|
|
|
|
public int getClear() { |
|
|
|
return this.getOpcIntegerValue(item_clear); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int getLline_speed() { |
|
|
|
public int getLine_speed() { |
|
|
|
return this.getOpcIntegerValue(item_line_speed); |
|
|
|
} |
|
|
|
|
|
|
@ -213,7 +220,9 @@ public class ItemProtocol { |
|
|
|
return this.getOpcIntegerValue(item_coating_frequency); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public int getPause() { |
|
|
|
return this.getOpcIntegerValue(item_pause); |
|
|
|
} |
|
|
|
|
|
|
|
public int getTo_heartbeat() { |
|
|
|
return this.getOpcIntegerValue(item_to_heartbeat); |
|
|
@ -370,9 +379,22 @@ public class ItemProtocol { |
|
|
|
list.add(new ItemDto(item_detail_strapping_oneqty, "当前工单明细号捆扎根数", "DB600.D44")); |
|
|
|
list.add(new ItemDto(item_detail_coating_qty, "当前工单明细号裹膜数", "DB600.D48")); |
|
|
|
list.add(new ItemDto(item_labeling_order, "当前贴标工单明细号", "DB600.D52")); |
|
|
|
list.add(new ItemDto(item_detail_rlabeling_qualified_qty, "当前工单明细号刻字数量", "DB600.D56")); |
|
|
|
list.add(new ItemDto(item_detail_rlabeling_qty, "当前贴标工单明细号贴标数", "DB600.D60")); |
|
|
|
list.add(new ItemDto(item_detail_labeling_qualified_qty, "当前工单明细号刻字数量", "DB600.D56")); |
|
|
|
list.add(new ItemDto(item_detail_labeling_qty, "当前贴标工单明细号贴标数", "DB600.D60")); |
|
|
|
list.add(new ItemDto(item_ready, "设备就绪", "DB600.D64")); |
|
|
|
list.add(new ItemDto( item_clear, "清料", "DB600.D68")); |
|
|
|
list.add(new ItemDto( item_pause, "暂停", "DB600.D72")); |
|
|
|
list.add(new ItemDto(item_line_speed, "线体速度", "DB600.REAL76")); |
|
|
|
list.add(new ItemDto(item_feeding_mouth, "上料口", "DB600.D80")); |
|
|
|
list.add(new ItemDto(item_is_lettering, "是否刻字", "DB600.D84")); |
|
|
|
list.add(new ItemDto(item_is_risking, "是否套冒", "DB600.D88")); |
|
|
|
list.add(new ItemDto(item_is_coating, "是否裹膜", "DB600.D92")); |
|
|
|
list.add(new ItemDto(item_is_strapping, "是否捆扎", "DB600.D96")); |
|
|
|
list.add(new ItemDto(item_is_labeling, "是否贴标", "DB600.D100")); |
|
|
|
list.add(new ItemDto(item_delay_time, "工段动作延时", "DB600.D104")); |
|
|
|
list.add(new ItemDto(item_lettering_frequency, "刻字频率", "DB600.D108")); |
|
|
|
list.add(new ItemDto(item_one_speed, "捆扎裹膜贴标段输送速度", "DB600.REAL112")); |
|
|
|
list.add(new ItemDto(item_coating_frequency, "裹膜机频率", "DB600.D116")); |
|
|
|
|
|
|
|
return list; |
|
|
|
} |
|
|
|