123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace UAS_LabelMachine.PublicMethod
- {
- class PLCInstruct
- {
- /// <summary>
- /// 设备启动
- /// </summary>
- private static string deviceStart= "deviceStart";
- /// <summary>
- /// 设备停止
- /// </summary>
- private static string deviceStop = "deviceStop";
- /// <summary>
- /// 数据到达
- /// </summary>
- private static string dataRecive = "dataRecive";
- /// <summary>
- /// 设备异常
- /// </summary>
- private static string devError = "devError";
- /// <summary>
- /// 堆叠料到达
- /// </summary>
- private static string stackMaterial = "stackMaterial";
- /// <summary>
- /// 复核料到达
- /// </summary>
- private static string checkMaterial = "checkMaterial";
- /// <summary>
- /// 前端扫描数据异常
- /// </summary>
- private static string frontDataDelete = "frontDataDelete";
- /// <summary>
- /// 前端数据通过
- /// </summary>
- private static string frontDataPass = "frontDataPass";
- /// <summary>
- /// 后端扫描数据异常
- /// </summary>
- private static string backDataDelete = "backDataDelete";
- /// <summary>
- /// 后端数据通过
- /// </summary>
- private static string backDataPass = "backDataPass";
- /// <summary>
- /// 料盘叠料
- /// </summary>
- private static string materialTray = "materialTray";
- public static string DeviceStart
- {
- get
- {
- return deviceStart;
- }
- set
- {
- deviceStart = value;
- }
- }
- public static string DataRecive
- {
- get
- {
- return dataRecive;
- }
- set
- {
- dataRecive = value;
- }
- }
- public static string DevError
- {
- get
- {
- return devError;
- }
- set
- {
- devError = value;
- }
- }
- public static string StackMaterial
- {
- get
- {
- return stackMaterial;
- }
- set
- {
- stackMaterial = value;
- }
- }
- public static string CheckMaterial
- {
- get
- {
- return checkMaterial;
- }
- set
- {
- checkMaterial = value;
- }
- }
- public static string FrontDataDelete
- {
- get
- {
- return frontDataDelete;
- }
- set
- {
- frontDataDelete = value;
- }
- }
- public static string FrontDataPass
- {
- get
- {
- return frontDataPass;
- }
- set
- {
- frontDataPass = value;
- }
- }
- public static string BackDataDelete
- {
- get
- {
- return backDataDelete;
- }
- set
- {
- backDataDelete = value;
- }
- }
- public static string BackDataPass
- {
- get
- {
- return backDataPass;
- }
- set
- {
- backDataPass = value;
- }
- }
- public static string MaterialTray
- {
- get
- {
- return materialTray;
- }
- set
- {
- materialTray = value;
- }
- }
- public static string DeviceStop
- {
- get
- {
- return deviceStop;
- }
- set
- {
- deviceStop = value;
- }
- }
- }
- }
|