diff --git a/src/BPA.Common.Infrastructure/BPA.Common.Infrastructure.csproj b/src/BPA.Common.Infrastructure/BPA.Common.Infrastructure.csproj index af93a8b..1ed4e38 100644 --- a/src/BPA.Common.Infrastructure/BPA.Common.Infrastructure.csproj +++ b/src/BPA.Common.Infrastructure/BPA.Common.Infrastructure.csproj @@ -3,7 +3,7 @@ net6.0 enable enable - 1.0.11 + 1.0.12 diff --git a/src/BPA.Common.Infrastructure/Queue/MqNameConfig.cs b/src/BPA.Common.Infrastructure/Queue/MqNameConfig.cs index f966b7a..d94e16f 100644 --- a/src/BPA.Common.Infrastructure/Queue/MqNameConfig.cs +++ b/src/BPA.Common.Infrastructure/Queue/MqNameConfig.cs @@ -5,12 +5,32 @@ namespace BPA.Common.Infrastructure.Queue; public static class MqNameConfig { /// - /// 业务日志交换机名称 + /// 业务日志 交换机名称 /// public static ExchangeName BizLogExchange => ExchangeName.Build(nameof(BizLogExchange)); /// - /// 业务日志队列名称 + /// 业务日志 队列名称 /// public static QueueName BizLogQueue => QueueName.Build(nameof(BizLogQueue)); + + /// + /// 任务调度 数据同步 交换机名称 + /// + public static ExchangeName SynDataTaskScheduleExchange = ExchangeName.Build(nameof(SynDataTaskScheduleExchange)); + + /// + /// 任务调度任意时间任务 交换机名称 + /// + public static ExchangeName AnyTimeTaskScheduleExchange = ExchangeName.Build(nameof(AnyTimeTaskScheduleExchange)); + + /// + /// 任务调度任意时间任务 队列名称 + /// + public static QueueName AnyTimeTaskScheduleQueue = QueueName.Build(nameof(AnyTimeTaskScheduleQueue)); + + /// + /// 任务调度 数据同步 队列名称 + /// + public static QueueName SynDataTaskScheduleQueue => QueueName.BuildDynamic(nameof(SynDataTaskScheduleQueue)); } \ No newline at end of file