using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Domain { public enum CurtainCtrl { /// /// 开 /// Open = 0x01, /// /// 关 /// Close = 0x02, /// /// 停止 /// Stop = 0x03, } }