啊鑫
3 天以前 2c1d75c4e57092eea3c26b925ab76c9fd17de736
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
using Newtonsoft.Json;
 
namespace MES.Service.Dto.service;
 
/// <summary>
///     拼板(单板)生成数据DTO
/// </summary>
public class SingleBoardGenerateDto
{
    /// <summary>
    ///     设备名称
    /// </summary>
    [JsonProperty("device_name")]
    public string? DeviceName { get; set; }
 
    /// <summary>
    ///     整板条码
    /// </summary>
    [JsonProperty("pcb_sn")]
    public string? PcbSn { get; set; }
 
    /// <summary>
    ///     轨道信息(1,1轨)(2,2轨)
    /// </summary>
    [JsonProperty("pcb_track_line")]
    public int PcbTrackLine { get; set; }
 
    /// <summary>
    ///     板面(T,顶面)(B,底面)(T+B,板面+底面)
    /// </summary>
    [JsonProperty("pcb_board_side")]
    public string? PcbBoardSide { get; set; }
 
    /// <summary>
    ///     检测时间
    /// </summary>
    [JsonProperty("pcb_test_time")]
    public string? PcbTestTime { get; set; }
 
    /// <summary>
    ///     检测耗时,单位秒
    /// </summary>
    [JsonProperty("pcb_cycle_time")]
    public float PcbCycleTime { get; set; }
 
    /// <summary>
    ///     程序名/板式名
    /// </summary>
    [JsonProperty("pcb_project_name")]
    public string? PcbProjectName { get; set; }
 
    /// <summary>
    ///     整板检测结果
    /// </summary>
    [JsonProperty("pcb_robot_result")]
    public string? PcbRobotResult { get; set; }
 
    /// <summary>
    ///     整板复判结果
    /// </summary>
    [JsonProperty("pcb_user_result")]
    public string? PcbUserResult { get; set; }
 
    /// <summary>
    ///     整板最终结果
    /// </summary>
    [JsonProperty("pcb_final_result")]
    public string? PcbFinalResult { get; set; }
 
    /// <summary>
    ///     维修站复判用户名
    /// </summary>
    [JsonProperty("pcb_repair_user")]
    public string? PcbRepairUser { get; set; }
 
    /// <summary>
    ///     拼板数量
    /// </summary>
    [JsonProperty("pcb_board_number")]
    public int PcbBoardNumber { get; set; }
 
    /// <summary>
    ///     器件总数量
    /// </summary>
    [JsonProperty("pcb_comp_number")]
    public int PcbCompNumber { get; set; }
 
    /// <summary>
    ///     拼板条码
    /// </summary>
    [JsonProperty("board_sn")]
    public string? BoardSn { get; set; }
 
    /// <summary>
    ///     拼板序号
    /// </summary>
    [JsonProperty("board_no")]
    public string? BoardNo { get; set; }
 
    /// <summary>
    ///     拼板检测结果
    /// </summary>
    [JsonProperty("board_robot_result")]
    public string? BoardRobotResult { get; set; }
 
    /// <summary>
    ///     拼板复判结果
    /// </summary>
    [JsonProperty("board_user_result")]
    public string? BoardUserResult { get; set; }
 
    /// <summary>
    ///     拼板最终结果
    /// </summary>
    [JsonProperty("board_final_result")]
    public string? BoardFinalResult { get; set; }
 
    /// <summary>
    ///     拼板器件数量
    /// </summary>
    [JsonProperty("board_comp_number")]
    public int BoardCompNumber { get; set; }
 
    /// <summary>
    ///     拼板器件检测NG总数
    /// </summary>
    [JsonProperty("board_comp_robot_ng_number")]
    public int BoardCompRobotNgNumber { get; set; }
 
    /// <summary>
    ///     拼板器件复判NG总数
    /// </summary>
    [JsonProperty("board_comp_user_ng_number")]
    public int BoardCompUserNgNumber { get; set; }
 
    /// <summary>
    ///     拼板器件误报总数
    /// </summary>
    [JsonProperty("board_comp_repass_number")]
    public int BoardCompRepassNumber { get; set; }
 
    /// <summary>
    ///     器件列表
    /// </summary>
    [JsonProperty("comp_data")]
    public List<ComponentDataDto>? CompData { get; set; }
}