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.

305 lines
6.4 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV
{
/// <summary>
/// 模块默认字体
/// </summary>
public enum ModuleFont
{
= 0,
= 1,
= 2,
= 3
}
/// <summary>
/// 将点单功能划分为5个区域除了一级菜单区和键盘操作区外其他区域功能有用户自己设定
/// </summary>
public enum ModuleArea
{
= 1,
= 2,
= 3,
= 4,
= 5,
= 6
}
public enum ModuleLayout
{
= 0,
= 1,
= 2
}
public enum ModuleAction
{
Delete = 1,
Add = 2,
Replace = 3
}
/// <summary>
/// 资源分组
/// </summary>
public enum ResourcesGroup
{
= 1,
= 2,
= 3,
= 4,
= 5,
= 6,
= 7,
= 8,
= 9,
= 20
}
/// <summary>
/// 模块功能
/// </summary>
public enum ModuleKeyCode
{
None = 0,
= 1,
= 2,
= 3,
= 4,
= 5,
= 6,
= 7,
= 8,
= 9,
= 10,
= 11,
= 12,
VK_0 = 49,
VK_1 = 50,
VK_2 = 51,
VK_3 = 52,
VK_4 = 53,
VK_5 = 54,
VK_6 = 55,
VK_7 = 56,
VK_8 = 57,
VK_9 = 58,
VK_10 = 59,
VK_20 = 60,
VK_50 = 61,
VK_100 = 62,
CLEAR = 63,
DOT = 64,
= 100,
= 101,
= 102,
= 103,
= 104,
= 105,
= 106,
= 107,
= 108,
= 109,
= 110,
= 111,
= 112,
= 113,
= 114,
= 115,
= 116,
= 117,
= 118,
= 119,
= 120,
= 122,
= 123,
= 124,
= 125,
= 126,
= 127,
= 128,
= 129,
= 130,
= 131,
= 132,
= 133,
= 134,
= 135,
= 136,
= 137,
= 138,
= 139,
= 140,
= 141,
= 142,
= 315,
//称重
= 143,
= 144,
= 145,
= 146,
//新增优惠
= 147,
= 148,
//新增优惠
= 149,
//zhangy 2020-04-23 Add 添加美团券核销功能
= 150,
//外卖功能
= 301,
饿 = 302,
= 303,
= 304,
= 305,
= 306,
QM = 307,
GC = 308,
= 311,
//会员卡功能
= 401,
= 402,
= 403,
= 404,
= 405,
退 = 406,
= 407,
= 408,
= 409,
= 410,
= 411,
= 412,
= 413,
= 414,
= 415,
= 416,
= 417,
= 418,
= 419,
= 420,
= 421,
= 422,
= 423,
= 424,
= 425,
= 426,
= 427,
= 428,
= 429,
//报表功能
= 601,
= 602,
= 603,
= 604,
= 605,
= 607,
= 608,
= 609,
= 610,
= 611,
= 612,
= 613,
= 614,
//库存管理功能
= 701,
= 702,
= 703,
= 704,
= 705,
= 706,
= 707,
= 708,
= 709,
= 710,
= 711,
= 712,
}
public enum MenuTileNotifyType
{
= 0,
= 1
}
public enum AuthOperator
{
None = 0,
= 1,
= 2
}
public enum KeyboardAction
{
None = 0,
Search = 1,
Left = 2,
Right = 3,
Up = 4,
Down = 5,
Enter = 6
}
/// <summary>
/// 左下消息类型
/// </summary>
public enum HistoryMsgType
{
= 1,
= 2,
= 3,
}
/// <summary>
/// 会员优惠券状态
/// </summary>
public enum MemberCouponStatus
{
= 0,
使 = 1,
= 2,
= 3,
= 4,
= 5,
使 = 50,
}
/// <summary>
/// 日期快捷操作
/// </summary>
public enum ReportQuickDate
{
= 0,
= 1,
= 2,
= 3,
= 4,
= 5,
= 6
}
/// <summary>
/// MIS支持的银行
/// </summary>
public enum BankOfMis
{
MIS = 0,
//农行MIS = 1
}
}