using System.ComponentModel; namespace iWare.Wms.Core { /// /// 工件阶段 /// public enum PieceUnLineStage { /// /// 已下线 /// [Description("已下线")] 已下线 = 1, /// /// 已出库 /// [Description("已出库")] 已出库 = 2 } }