You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
446 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Common
{
public class MqttTopic
{
/// <summary>
/// 代理中心
/// </summary>
public const string TOPIC_PROXY_CENTER = "msc/proxy";
/// <summary>
/// 收银机监控沽清变动
/// </summary>
public const string TOPIC_SALE_CLEAR = "pos/saleclear";
}
}