53 lines
2.4 KiB
C#
53 lines
2.4 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Syc.Abp.Domain
|
||
{
|
||
/// <summary>
|
||
/// 路由格式:
|
||
/// 1、无指定消费方: 生产方.**** 如:MES.xxxxxxx 则表示生产方为 MES
|
||
/// 2、有指定消费方: 生产方.***.消费方,如 MES.xxxxxx.WMS 则表示生产方为 MES 消费方为 WMS
|
||
/// </summary>
|
||
public class RabbitmqRoutingKey
|
||
{
|
||
public const string TEST = "RABBITMQ.QQQ";
|
||
|
||
/// <summary>
|
||
/// MES发布捻丝排产单事件
|
||
/// </summary>
|
||
public const string PublishTwistingArrange = "MES.TASK.TWISTING";
|
||
/// <summary>
|
||
/// MES发布织布排产单事件
|
||
/// </summary>
|
||
public const string PublishWeavingArrange = "MES.TASK.WEAVING";
|
||
|
||
/// <summary>
|
||
/// MTQQ 消息推送测试
|
||
/// </summary>
|
||
public const string A = ".pda.test";
|
||
public const string WCS_TopYarnOrder_WMS = "WCS.TopYarnOrder.WMS";
|
||
public const string WCS_CachePointToWorkPoint_WMS = "ZBWCS.CachePointToWorkPoint.WMS";
|
||
public const string WMS_CachePointToWorkPoint_HandleDone= "WMS.CachePointToWorkPointDone";
|
||
public const string Job_SaveToRedis_WMS = "Job.SaveToRedis.WMS";
|
||
|
||
public const string WCS_RecycleEmptypPallets_WMS = "ZBWCS.RecycleEmptypPallets.WMS";
|
||
public const string WMS_EmptypPalletsLeaveWorkPoint_ZBWCS = "WMS.EmptypPalletsLeaveWorkPoint.ZBWCS";
|
||
public const string WMS_RecycleEmptypPallets_Done = "WMS.RecycleEmptypPallets.Done";
|
||
|
||
public const string WCS_RecyclePlate_WMS = "ZBWCS.RecyclePlate.WMS";
|
||
public const string WMS_RecyclePlateLeaveWorkPoint_ZBWCS = "WMS.RecyclePlateLeaveWorkPoint.ZBWCS";
|
||
public const string WMS_RecyclePlate_Done = "WMS.RecyclePlate.Done";
|
||
|
||
public const string WCS_RequestReplenishTray_WMS = "ZBWCS.RequestReplenishTray.WMS";
|
||
public const string WMS_RequestReplenishTray_Done = "WMS.RequestReplenishTray.Done";
|
||
|
||
public const string ZBWCS_EmptypTupeCarSupply_WMS = "ZBWCS.EmptypTupeCarSupply.WMS";
|
||
public const string WMS_EmptypTupeCarSupply_ZBWCS = "WMS.EmptypTupeCarSupply.ZBWCS";
|
||
public const string Job_InsertDeliveryTask_WMS = "Job.InsertDeliveryTask.WMS";
|
||
public const string ChangeZBTaskStatus = "ChangeZBTaskStatus.WMS";
|
||
}
|
||
}
|