47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Infrastructure.Enumeration
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 系统类型
|
|||
|
/// </summary>
|
|||
|
public enum SystemType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 公用
|
|||
|
/// </summary>
|
|||
|
[Description("公用")]
|
|||
|
Common = 0,
|
|||
|
/// <summary>
|
|||
|
/// 公司系统
|
|||
|
/// </summary>
|
|||
|
[Description("公司系统")]
|
|||
|
Company = 11,
|
|||
|
/// <summary>
|
|||
|
/// 加盟商系统
|
|||
|
/// </summary>
|
|||
|
[Description("加盟商系统")]
|
|||
|
Customer = 12,
|
|||
|
/// <summary>
|
|||
|
/// 店铺系统
|
|||
|
/// </summary>
|
|||
|
[Description("店铺系统")]
|
|||
|
Shop = 13,
|
|||
|
/// <summary>
|
|||
|
/// 店铺Pos机系统
|
|||
|
/// </summary>
|
|||
|
[Description("店铺Pos机系统")]
|
|||
|
Pos = 14,
|
|||
|
/// <summary>
|
|||
|
/// 移动端店铺系统
|
|||
|
/// </summary>
|
|||
|
[Description("移动端店铺系统")]
|
|||
|
MobileClient = 15
|
|||
|
}
|
|||
|
}
|