using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareTestForm
{
    /// 
    /// 任务类型枚举类
    /// 
    public enum TransTypeForOutStorageCompleted
    {
        /// 
        /// 热前出库
        /// 
        [Description("热前出库")]
        Preheating = 11,
        /// 
        /// 热后出库
        /// 
        [Description("热后出库")]
        PostHeatStorageOut = 21
    };
}