using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CMS.Plugin.HIAWms.Domain.Shared.Enums
{
///
/// 子任务类型
///
[Description("子任务类型")]
public enum SonTaskTypeEnum
{
///
/// 自动入库
///
[Description("自动入库")]
ZDRUKU = 1,
///
/// 人工入库
///
[Description("人工入库")]
RGRUKU = 2,
///
/// 人工出库
///
[Description("人工出库")]
RGCHUKU = 3,
///
/// 自动出库
///
[Description("自动出库")]
ZDCHUKU = 4,
///
/// 空托呼叫
///
[Description("空托呼叫")]
KTHUJIOA = 5,
///
/// 回库
///
[Description("回库")]
HUIKU = 6,
}
}