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
{
///
/// 用于CSV映射的类
///
public class CsvRecordProductData
{
///
/// SKU 物料号或产品名称
///
public string ProductName { get; set; }
///
/// 产品SN号
///
public string ProductSN { get; set; }
///
/// 检测作业员
///
public string InspectionOperator { get; set; }
///
/// NG类型
///
public string NGType { get; set; }
///
/// NG大小
///
public string NGSize { get; set; }
///
/// 检测时间
///
public string DetectionTime { get; set; }
///
/// 检测相机
///
public string CameraInspection { get; set; }
///
/// 轮胎ID
///
public int TyreID { get; set; }
///
/// 图像序号(1~n)
///
public int ImageIndex { get; set; }
///
/// 轮胎级检测结果
///
public string TyreResult { get; set; }
///
/// 每张轮胎图像数
///
public int ImagesPerTyre { get; set; }
}
}