using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UAS_LabelMachine.PublicMethod
{
class PLCInstruct
{
///
/// 设备启动
///
private static string deviceStart= "deviceStart";
///
/// 设备停止
///
private static string deviceStop = "deviceStop";
///
/// 数据到达
///
private static string dataRecive = "dataRecive";
///
/// 设备异常
///
private static string devError = "devError";
///
/// 堆叠料到达
///
private static string stackMaterial = "stackMaterial";
///
/// 复核料到达
///
private static string checkMaterial = "checkMaterial";
///
/// 前端扫描数据异常
///
private static string frontDataDelete = "frontDataDelete";
///
/// 前端数据通过
///
private static string frontDataPass = "frontDataPass";
///
/// 后端扫描数据异常
///
private static string backDataDelete = "backDataDelete";
///
/// 后端数据通过
///
private static string backDataPass = "backDataPass";
///
/// 料盘叠料
///
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;
}
}
}
}