using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEA_Core.Const
|
{
|
/// <summary>
|
/// 分类常量
|
/// </summary>
|
public class CateGoryConst
|
{
|
/// <summary>
|
/// IP接口地址
|
/// </summary>
|
public const string CONFIG_WCS_IPAddress = "WCS_IPAddress";
|
|
public const string CONFIG_MES_IPAddress = "MES_IPAddress";
|
}
|
|
/// <summary>
|
/// 配置Key常量
|
/// </summary>
|
public class SysConfigConst
|
{
|
/// <summary>
|
/// 下发WCS任务
|
/// </summary>
|
public const string WCSReceiveTask = "ReceiveTask";
|
|
/// <summary>
|
/// 移库任务完成
|
/// </summary>
|
public const string MESTransferCompletionFeedback = "MESTransferCompletionFeedback";
|
public const string MESTaskFeedback = "MESTaskFeedback";
|
|
}
|
}
|