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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Pcb.Common.Config
{
    /// <summary>
    /// 质检报表
    /// </summary>
    public class QCReportExceptionConfig
    {
        /// <summary>
        /// 构造函数
        /// </summary>
        static QCReportExceptionConfig()
        {
            _TypeList.Add(Pcb.Common.Enum.EnumReportQCOrderExceptionType.XieLuReturn.GetHashCode(), new List<string> {
                "菲林定位",
                "开短路",
                "露铜",
                "缺口",
                "线细",
                "脏点",
                "孔偏",
                "手指印",
                "对反",
                "曝光不良",
                "显影不洁",
                "刮伤",
                "油墨入孔",
                "印刷不良",
                "其他"
            });
            _TypeList.Add(Pcb.Common.Enum.EnumReportQCOrderExceptionType.FangHanReturn.GetHashCode(), new List<string> {
                "露铜",
                "防焊起泡",
                "油墨入孔",
                "显影不净",
                "沾胶",
                "油墨脏点",
                "印刷不良",
                "曝反",
                "绿油起泡",
                "菲林刮伤",
                "PAD沾漆",
                "油墨不均",
                "假性露铜",
                "色差",
                "指纹",
                "板面氧化",
                "侧露",
                "曝光压痕",
                "板面刮伤",
                "备注"
            });
            _TypeList.Add(Pcb.Common.Enum.EnumReportQCOrderExceptionType.ZhongJianReturn.GetHashCode(), new List<string> {
                "锡上线",
                "擦花露铜",
                "开路",
                "短路",
                "锡短路",
                "锡高/锡渣",
                "油墨起皱",
                "防焊起泡",
                "油墨入孔",
                "显影不净",
                "胶渍",
                "油墨底垃圾",
                "阻焊氧化",
                "金面不良",
                "假性露铜",
                "线路缺口",
                "色差",
                "V偏",
                "成型铣坏",
                "偏位",
                "压伤",
                "板面擦花",
                "侧露",
                "焊盘缺损",
                "文字不清",
                "备注"
            });
            _TypeList.Add(Pcb.Common.Enum.EnumReportQCOrderExceptionType.ShiKeReturn.GetHashCode(), new List<string> {
                "对偏",
                "开路",
                "短路",
                "缺口",
                "露铜",
                "脏点垃圾",
                "菲林印",
                "显影不净",
                "曝光不良",
                "干膜起泡",
                "板面氧化",
                "撕膜不净",
                "偏位",
                "干膜碎",
                "干膜破孔",
                "对反",
                "干膜掉膜",
                "其他"
            });
        }
 
        /// <summary>
        /// 类型列表
        /// </summary>
        public static Dictionary<int, List<string>> TypeList
        {
            get { return _TypeList; }
        }
        static Dictionary<int, List<string>> _TypeList = new Dictionary<int, List<string>>();
    }
}