using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common.StockEnum
{
public enum StockInfoDetailTypeEmun
{
///
/// 物料条码
///
[Description("物料条码")]
Materials = 0,
///
/// 箱条码
///
[Description("箱条码")]
Box = 1,
///
/// SN码
///
[Description("SN码")]
SN = 3,
///
/// 托码
///
[Description("托码")]
Tora = 4,
///
/// 载具码
///
[Description("载具码")]
Vehicle = 5,
}
}