using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareModel.EnumType.WMS
{
///
/// 待处理预警库存物料信息类型 1 :紧急采购 ,2: 日常补货
///
public enum EnumPendingType
{ ///
/// 紧急采购
///
[Description("紧急采购")]
紧急采购 = 1,
///
/// 日常补货
///
[Description("日常补货")]
日常补货 = 2
}
///
/// 待处理预警库存物料处理状态 0:未处理 , 1:处理中
///
public enum EnumPendingStatus
{ ///
/// 未处理
///
[Description("未处理")]
未处理 = 0,
///
/// 处理中
///
[Description("处理中")]
处理中 = 1
}
}