27 lines
457 B
C#
27 lines
457 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace XKRS.Common.Model.Helper
|
|
{
|
|
public static class EnumHelper
|
|
{
|
|
public enum DeviceState
|
|
{
|
|
|
|
}
|
|
|
|
[Flags]//将枚举视为位域
|
|
public enum DeviceAttributeType
|
|
{
|
|
|
|
|
|
[Description("运行控件")]
|
|
RunCtrl=512,
|
|
}
|
|
}
|
|
}
|