using System;
using System.Collections.Generic;
using System.Text;
namespace WIDESEA.Common
{
public enum OutboundType
{
///
/// 指定物料条码
///
Manual_Materiel = 3,
///
/// 指定货位
///
Manual_Location = 2,
///
/// 不良品,批次
///
Manual_Unqualify = 1,
///
/// 正常出库
///
Manual_Normal = 0
}
}