You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
47 lines
1.3 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace EC.Utils.PLC
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 命令编码
|
||
|
/// </summary>
|
||
|
public partial class PLCCommandFunction
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 线禁用 MES->PLC
|
||
|
/// </summary>
|
||
|
public const string PackageLineError = "C001";
|
||
|
/// <summary>
|
||
|
/// PLC->MES汇流区错误
|
||
|
/// </summary>
|
||
|
public const string ConvergeError = "C002";
|
||
|
/// <summary>
|
||
|
/// PLC->MES 手动汇流区错误
|
||
|
/// </summary>
|
||
|
public const string ManualConvergeError = "C003";
|
||
|
/// <summary>
|
||
|
/// 包装箱称重
|
||
|
/// </summary>
|
||
|
public const string PackageBoxWeight = "C004";
|
||
|
/// <summary>
|
||
|
///包装箱称重 回复
|
||
|
/// </summary>
|
||
|
public const string PackageBoxWeightReturn = "C004";
|
||
|
/// <summary>
|
||
|
/// 包装箱类型
|
||
|
/// </summary>
|
||
|
public const string ZboxType = "C005";
|
||
|
/// <summary>
|
||
|
/// 箱麦扫描 确认
|
||
|
/// </summary>
|
||
|
public const string BoxScanning = "C006";
|
||
|
|
||
|
public static string PrintCodeError { get; set; }
|
||
|
public static string BeltMove { get; set; }
|
||
|
}
|
||
|
}
|