using System.ComponentModel;
namespace WIDESEA_Common
{
public enum StatusChangeTypeEnum
{
///
/// 自动入库
///
[Description("自动入库")]
AutomaticInbound = 1,
///
/// 自动出库
///
[Description("自动出库")]
AutomaticOutbound = 2,
///
/// 自动移库
///
[Description("自动移库")]
AutomaticRelocation = 3,
///
/// 人工操作
///
[Description("人工操作")]
ManualOperation = 4
}
}