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