using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareModel.EnumType.AoSinPublicCommon
{
///
/// 出入库任务标记
///
public enum TaskCategoryEnum
{
///
/// 入库任务
///
[Description("入库任务")]
InStock = 1,
///
/// 出库任务
///
[Description("出库任务")]
OutStock = 2,
///
/// 移库任务
///
[Description("移库任务")]
MoveStock = 3,
///
/// 前置任务
///
[Description("前置任务")]
Front = 4,
///
/// 平库任务
///
[Description("平库任务")]
Floor = 5,
}
}