using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EC.Utils.PLC
{
///
/// 命令编码
///
public partial class PLCCommandFunction
{
///
/// 线禁用 MES->PLC
///
public const string PackageLineError = "C001";
///
/// PLC->MES汇流区错误
///
public const string ConvergeError = "C002";
///
/// PLC->MES 手动汇流区错误
///
public const string ManualConvergeError = "C003";
///
/// 包装箱称重
///
public const string PackageBoxWeight = "C004";
///
///包装箱称重 回复
///
public const string PackageBoxWeightReturn = "C004";
///
/// 包装箱类型
///
public const string ZboxType = "C005";
///
/// 箱麦扫描 确认
///
public const string BoxScanning = "C006";
public static string PrintCodeError { get; set; }
public static string BeltMove { get; set; }
}
}