wangxinhui
2025-10-26 733c975cd8647f6d006736f1863bad731e32e6fb
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
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Common.CommonEnum
{
    /// <summary>
    /// 印刷上料口区域
    /// </summary>
    public enum PrintAreaEnum
    {
        /// <summary>
        /// 十合一上料1号口
        /// </summary>
        [Description("十合一上料1号口")]
        十合一上料1号口 = 605,
        /// <summary>
        /// 十合一上料2号口
        /// </summary>
        [Description("十合一上料2号口")]
        十合一上料2号口 = 604,
        /// <summary>
        /// 八合一上料1号口
        /// </summary>
        [Description("八合一上料1号口")]
        八合一上料1号口 = 615,
        /// <summary>
        /// 八合一上料2号口
        /// </summary>
        [Description("八合一上料2号口")]
        八合一上料2号口 = 614,
        /// <summary>
        /// 五合一上料口
        /// </summary>
        [Description("五合一上料口")]
        五合一上料口 = 101,
    }
}