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.

71 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace JwKdsV.Core
{
/// <summary>
/// API接口类型
/// </summary>
public enum ApiType
{
Business = 1,
Card = 2
}
public enum SystemFont
{
= 0,
= 1,
= 2,
= 3,
= 4,
= 5,
= 6,
}
public enum KDSDisplayWay
{
/// <summary>
/// 单品
/// </summary>
PRODUCT = 0,
/// <summary>
/// 订单
/// </summary>
ORDER = 1,
/// <summary>
/// 分类
/// </summary>
CATEGORY =2
}
public enum ProductOrderType
{
= 0,
= 1,// no
= 2,// price
= 3,// name
}
public enum KeyboardType
{
= 1,
= 2,
= 3
}
public enum KeyboardAction
{
None = 0,
Search = 1,
Left = 2,
Right = 3,
Up = 4,
Down = 5,
Enter = 6
}
}