schangxiang@126.com
2024-12-20 01c3a4658026e9c3ed9daaf1f1b27da368ab11a9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWareTestForm
{
 
    /// <summary>
    /// 任务类型枚举类
    /// </summary>
    public enum TransTypeForOutStorageCompleted
    {
        /// <summary>
        /// 热前出库
        /// </summary>
        [Description("热前出库")]
        Preheating = 11,
 
        /// <summary>
        /// 热后出库
        /// </summary>
        [Description("热后出库")]
        PostHeatStorageOut = 21
    };
 
 
}