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.

36 lines
863 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Common
{
public class CommandName
{
/// <summary>
/// Login
/// </summary>
public const string LOGIN = "LOGIN";
/// <summary>
/// 新订单
/// </summary>
public const string NEWORDER = "NEWORDER";
/// <summary>
/// kds接收新订单响应
/// </summary>
public const string KDSNEWORDERRESPONSE = "KDSNEWORDERRESPONSE";
/// <summary>
/// kds划菜通知
/// </summary>
public const string KDSHUACAI = "KDSHUACAI";
/// <summary>
/// kds接收划菜接收通知响应 出品厨显响应给服务中心
/// </summary>
public const string KDSHUACAIRESPONSE = "KDSHUACAIRESPONSE";
}
}