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