using System; using System.Collections.Generic; using System.Text; namespace WIDESEA_Common.EquipmentEnum { public enum StationEnum { /// /// 未连接 /// Disconnect = -1, /// /// 无料 /// Empty, /// /// 有料 /// Stroge, /// /// 允许 /// Allow, /// /// 不允许 /// NotAllow } }