zs
2025-05-07 58497c4d028c306e98249ccdff2bf86dd3b4ee87
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
31
32
33
34
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace CMS.Plugin.HIAWms.Domain.Shared.Enums
{
    /// <summary>
    ///设备类型.
    /// </summary>
    [Description("设备类型")]
    public enum DodevicetypeEnum
    {
        /// <summary>
        /// 堆垛机.
        /// </summary>
        [Description("堆垛机")]
        Srm = 1,
 
        /// <summary>
        /// 输送线.
        /// </summary>
        [Description("输送线")]
        Line,
 
        /// <summary>
        /// AGV.
        /// </summary>
        [Description("AGV")]
        Agv,
    }
}