轮胎外观检测添加思谋语义分割模型检测工具
C3204
2026-03-30 7ceaa09e4baefe84bad268b56bbf8b8f3f1d0f99
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
using LB_SmartVisionCommon;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace LB_SmartVision.CSV
{
    /// <summary>
    /// 用于CSV映射的类
    /// </summary>
    public class CsvRecordProductData
    {
        /// <summary>
        /// SKU  物料号或产品名称
        /// </summary>
        public string ProductName { get; set; }
 
        /// <summary>
        /// 产品SN号
        /// </summary>
        public string ProductSN { get; set; }
 
        /// <summary>
        /// 检测作业员
        /// </summary>
        public string InspectionOperator { get; set; }
 
        /// <summary>
        /// NG类型
        /// </summary>
        public string NGType { get; set; }
 
        /// <summary>
        /// NG大小
        /// </summary>
        public string NGSize { get; set; }
 
        /// <summary>
        /// 检测时间
        /// </summary>
        public string DetectionTime { get; set; }
 
        /// <summary>
        /// 检测相机
        /// </summary>
        public string CameraInspection { get; set; }
    }
 
}