using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WMS.Info
{
///
/// 任务类型
///
[Description("任务类型")]
public enum ETaskComType
{
///
/// 入库
///
[Description("入库")]
InStock = 1,
///
/// 出库
///
[Description("出库")]
OutStock = 2,
/////
///// 移库
/////
//[Description("移库")]
//MoveStock = 3,
/////
///// 移动
/////
//[Description("移动")]
//Move = 4,
}
}