using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_Common.TaskEnum
{
public enum TaskTypeEnum
{
///
/// 出库
///
[Description("出库")]
Outbound = 100,
///
/// 入库
///
[Description("入库")]
Inbound = 500,
/////
///// 巷道内移库
/////
//[Description("巷道内移库")]
//Relocation = 900
}
}