using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.OrderEnum { /// /// 出库单据状态
/// 0:未开始
/// 1:出库中
/// 2:出库完成
/// 99:关闭
///
public enum OutOrderStatusEnum { /// /// 未开始 /// [Description("未开始")] 未开始 = 0, /// /// 出库中 /// [Description("出库中")] 出库中 = 1, /// /// 出库完成 /// [Description("出库完成")] 出库完成 = 2, /// /// 关闭 /// [Description("关闭")] 关闭 = 99 } /// /// 单据类型
/// 1:一期生管领料
///
public enum OutOrderTypeEnum { /// /// 一期生管领料 /// [Description("一期生管领料")] OutSGPick = 1, /// /// 二期MES领料 /// [Description("二期MES领料")] OutMESPick = 2 } }