using System.ComponentModel; namespace ERP.Framework.Emum { /// /// 设备类型枚举 /// [Description("设备类型枚举")] public enum DeviceEnum { /// /// Web /// [Description("Web")] Web = 0, /// /// APP /// [Description("APP")] APP = 1, } }