using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common.OrderEnum
{
    /// 
    /// 盘点状态
    /// 
    public enum TakeStockStatusEnum
    {
        /// 
        /// 未盘点
        /// 
        [Description("未盘点")]
        未盘点 = 0,
        /// 
        /// 盘点中
        /// 
        [Description("盘点中")]
        盘点中 = 1,
        /// 
        /// 盘点完成
        /// 
        [Description("盘点完成")]
        盘点完成 = 2,
        /// 
        /// 盘点关闭
        /// 
        [Description("盘点关闭")]
        盘点关闭 = 3,
    }
    /// 
    /// 盘点明细状态
    /// 
    public enum TakeStockDetailStatusEnum
    {
        /// 
        /// 未盘点
        /// 
        [Description("未盘点")]
        未盘点 = 0,
        /// 
        /// 盘点中
        /// 
        [Description("盘点出库中")]
        盘点出库中 = 1,
        /// 
        /// 盘点出库完成
        /// 
        [Description("盘点出库完成")]
        盘点出库完成 = 2,
        /// 
        /// 盘点完成
        /// 
        [Description("盘点完成")]
        盘点完成 = 3
    }
}