lch
2024-08-26 198c452febce0f598163a42eeed044c45001f604
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
118
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace GSproduction
{
    class GSproductionClass
    {
        //产线条码报工类
        /// <summary>
        /// 编号
        /// </summary>
        /// <value>
        /// 编号
        /// </value>
        public string BianNo { get; set; }
        /// <summary>
        /// 条码序号
        /// </summary>
        /// <value>
        /// 条码序号
        /// </value>
        public string CHEEKTIME { get; set; }
        public string BarcodeNO { get; set; }
        /// <summary>
        /// 生产线
        /// </summary>
        /// <value>
        /// 生产线
        /// </value>
        public string LinesName { get; set; }
        /// <summary>
        /// 产品类别
        /// </summary>
        /// <value>
        /// 产品类别
        /// </value>
        public string Product { get; set; }       
        /// <summary>
        /// 生产订单
        /// </summary>
        /// <value>
        /// 生产订单
        /// </value>
        public string WorkNo { get; set; }
        /// <summary>
        /// 检测类别1
        /// </summary>
        /// <value>
        /// 检测类别1
        /// </value>
        public string CheckCategory1 { get; set; }
        /// <summary>
        /// 检测类别2
        /// </summary>
        /// <value>
        /// 检测类别2
        /// </value>
        public string CheckCategory2 { get; set; }
        /// <summary>
        /// 检测类别3
        /// </summary>
        /// <value>
        /// 检测类别3
        /// </value>
        public string CheckCategory3 { get; set; }
        /// <summary>
        /// 检测类别4
        /// </summary>
        /// <value>
        /// 检测类别4
        /// </value>
        public string CheckCategory4 { get; set; }
        /// <summary>
        /// 检测类别5
        /// </summary>
        /// <value>
        /// 检测类别5
        /// </value>
        public string CheckCategory5 { get; set; }
        /// <summary>
        /// 检测类别6
        /// </summary>
        /// <value>
        /// 检测类别6
        /// </value>
        public string CheckCategory6 { get; set; }
        /// <summary>
        /// 检测类别7
        /// </summary>
        /// <value>
        /// 检测类别7
        /// </value>
        public string CheckCategory7 { get; set; }
        /// <summary>
        /// 检测类别8
        /// </summary>
        /// <value>
        /// 检测类别8
        /// </value>
        public string CheckCategory8 { get; set; }
        /// <summary>
        /// 检测类别9
        /// </summary>
        /// <value>
        /// 检测类别9
        /// </value>
        public string CheckCategory9 { get; set; }
        /// <summary>
        /// 检测类别10
        /// </summary>
        /// <value>
        /// 检测类别10
        /// </value>
        public string CheckCategory10 { get; set; }
    }
}