using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WMS.Info
{
///
/// RF任务类型
///
[Description("SAP任务状态")]
public enum ESAPTaskState
{
///
/// 入库
///
[Description("未上传")]
SAPTaskNo = 0,
///
/// 出库
///
[Description("已上传")]
SAPTaskYes = 99,
}
}