using System;
using System.Collections.Generic;
using System.Text;
namespace CommonClassLib
{
class CellDefine
{
///
/// 货位规格
///
public enum CellModel
{
///
/// 标准货格
///
commonCell = 1,
///
/// 大货格
///
bigCell = 2,
///
/// 小货格
///
smallCell = 3
}
///
/// 货格存储类型
///
public enum CellType
{
///
/// 单个物料存储
///
sameSingle = 1,
///
/// 同种多个物料
///
sameSome = 2,
///
/// 多物料混放
///
someMerge = 3
}
///
/// 货格结构
///
public enum CellStruct
{
///
/// 单货位
///
singleCell = 1,
///
/// 双深货位
///
doubleExtend = 2,
///
/// 双货位
///
doubleCell = 3
}
}
}