using System.ComponentModel; namespace XiGang.Core.Model { /// /// 主任务出入库标记 /// public enum MainInOutFlagEnum { /// /// 入库 /// [Description("入库")] 入库 = 1, /// /// 出库 /// [Description("出库")] 出库 = 2, /// /// 转运 /// [Description("转运")] 转运 = 3 } }