wyb
2021-05-11 49ce087bd2a34a150597e1cc1da157af242c0b6d
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Pcb.Common.Enum
{
    public enum EnumProFeedReason
    {
        [Note("少投")]
        少投 = 1,
 
        [Note("短路")]
        短路 = 2,
 
        [Note("表面擦花")]
        表面擦花 = 3,
 
        [Note("洗坏")]
        洗坏 = 4,
 
        [Note("CAM出错")]
        CAM出错 = 5,
 
        [Note("其他")]
        其他 = 6
    }
}