using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.StoreQueue { public class QueueHelper { /// /// 获取通道名称 /// public static string GetQueueName(string flag) { if (string.IsNullOrEmpty(flag)) return ConfigHelper.Prefix_Queue; return $"{ConfigHelper.Prefix_Queue}_{flag}"; } } }