using System.ComponentModel; namespace Admin.NET.Application { /// /// 移动类型 /// [Description("移动类型")] public enum MoveTypeEnum { /// /// 收货 /// [Description("收货")] 收货 = 10, /// /// 发货 /// [Description("发货")] 发货 = 20, /// /// 移库 /// [Description("移库")] 移库 = 30, ///// ///// 质检 算 其他 ///// //[Description("质检")] //质检 = 40, /// /// 其他 /// [Description("其他")] 其他 = 80, /// /// NC处理 /// [Description("NC处理")] NC处理 = 90, } /// /// 业务类型 /// [Description("业务类型")] public enum BusinessTypeEnum { #region 收货,10开头 /// /// 采购收货 /// [Description("采购收货")] 采购收货 = 1001, #endregion #region 发货,20开头 /// /// 客户发运 /// [Description("客户发运")] 客户发运 = 2001, #endregion #region 移库,30开头 /// /// 拣货 /// [Description("拣货")] 拣货 = 3001, /// /// 容器组盘上架 /// [Description("容器组盘上架")] 容器组盘上架 = 3002, /// /// 容器上架 /// [Description("容器上架")] 容器上架 = 3003, /// /// 组盘上架 /// [Description("组盘上架")] 组盘上架 = 3004, /// /// 盘点上架 /// [Description("盘点上架")] 盘点上架 = 3005, /// /// 盘点下架 /// [Description("盘点下架")] 盘点下架 = 3006, /// /// 供应商退货 /// [Description("供应商退货")] 供应商退货 = 3012, /// /// 生产退料 /// [Description("生产退料")] 生产退料 = 3013, /// /// 上架 /// [Description("上架")] 上架 = 3015, /// /// 波次下发 /// [Description("波次下发")] 波次下发 = 3016, /// /// 看板卡下架 /// [Description("看板卡下架")] 看板卡下架 = 3017, /// /// 容器下架 /// [Description("容器下架")] 容器下架 = 3018, //系统的,移库类型的,按照 306X,307X,308X,开头定义把 /// /// 物料拆分 /// [Description("物料拆分")] 物料拆分 = 3061, /// /// 物料合并 /// [Description("物料合并")] 物料合并 = 3062, /// /// 物料组盘 /// [Description("物料组盘")] 物料组盘 = 3063, /// /// 物料解绑 /// [Description("物料解绑")] 物料解绑 = 3064, /// /// 库位绑定 /// [Description("库位绑定")] 库位绑定 = 3065, /// /// 库位解绑 /// [Description("库位解绑")] 库位解绑 = 3066, /// /// 空容器组盘 /// [Description("空容器组盘")] 空容器组盘 = 3067, /// /// 空容器解绑 /// [Description("空容器解绑")] 空容器解绑 = 3068, /// /// 点到点移库 /// [Description("点到点移库")] 点到点移库 = 3069, #endregion #region 其他,80开头 /// /// 报检单-进料检验 /// [Description("进料检验")] 进料检验 = 8001, /// /// 标准盘点 /// [Description("标准盘点")] 标准盘点 = 8002, /// /// 盘点冻结 /// [Description("盘点冻结")] 盘点冻结 = 8003, /// /// 盘点解冻 /// [Description("盘点解冻")] 盘点解冻 = 8004, /// /// 报检 /// [Description("报检")] 报检 = 8005, /// /// 盘点关闭 /// [Description("盘点关闭")] 盘点关闭 = 8006, /// /// 盘点完成 /// [Description("盘点完成")] 盘点完成 = 8008, /// /// 冻结 /// [Description("冻结")] 冻结 = 8010, /// /// 解冻 /// [Description("解冻")] 解冻 = 8011, /// /// 盘盈调差 /// [Description("盘盈调差")] 盘盈调差 = 8013, /// /// 盘亏调差 /// [Description("盘亏调差")] 盘亏调差 = 8014, #endregion #region NC处理,90开头 /// /// 不合格品退库 /// [Description("不合格品退库")] 不合格品退库 = 9001, #endregion } }