using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_Common.LocationEnum
{
    /// 
    /// 货位状态
    /// 
    public enum LocationStatusEnum
    {
        /// 
        /// 空闲
        /// 
        [Description("空闲")]
        Free = 0,
        /// 
        /// 锁定
        /// 
        [Description("锁定")]
        Lock = 1,
        /// 
        /// 有货
        /// 
        [Description("有货")]
        InStock = 2,
    }
    public enum EnableStatusEnum
    {
        /// 
        /// 正常
        /// 
        [Description("正常")]
        Normal = 0,
        /// 
        /// 禁用
        /// 
        [Description("禁用")]
        Disable = 3
    }
    public enum LocationTypeEnum
    {
        /// 
        /// 剔除货位
        /// 
        [Description("剔除货位")]
        Cube = 1,
        /// 
        /// 正常货位
        /// 
        [Description("正常货位")]
        Flat = 2
    }
}