using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Domain { public enum PowerSupplyCtrl { /// /// 正常 /// Normal = 0x00, /// /// 锁定 /// Lock = 0x01, } }